MySQL原生PHP操作-天龙八步

Posted BUG工厂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL原生PHP操作-天龙八步相关的知识,希望对你有一定的参考价值。

<?php
//1、第一步【建立连接】 $conn = mysqli_connect(‘localhost‘,‘root‘,‘123456‘) or die(‘数据库连接失败!‘); //2、第二步【选择数据库】 mysqli_select_db($conn,‘new_kt‘); //3、第三步【设置字符集】 mysqli_set_charset($conn,‘utf8‘); //4、第四步【准备sql语句】 $sql = ‘select * from `user` limit 10‘; //5、第五步【执行sql语句】 $result = mysqli_query($conn,$sql); $new_result = [];//数组结果集 //while($row = mysqli_fetch_array($result)){ //$new_result[]=$row; //} //6、第六步【获取结果集】 //或者如下方式 $new_result = mysqli_fetch_all($result,MYSQLI_ASSOC); $nums = mysqli_num_rows($result);//数据条数 //7、第七步【释放临时数据】 mysqli_free_result($result); //8、第八步【关闭连接】 mysqli_close($conn); ?>

 

以上是关于MySQL原生PHP操作-天龙八步的主要内容,如果未能解决你的问题,请参考以下文章

MySQL原生PHP操作-天龙八步

PHPMySQL原生PHP操作-天龙八步

PHPMySQL原生PHP操作-天龙八步

PHP操作MySQL

天龙八部抢号

天龙八部抢号