PHP 连接数据库
PHP7已经不用mysql_connect来创建数据库了。而是改用mysql_connect来创建数据库。
这里只介绍一种创建数据库的方法:
连接数据库的方式:
$mysqli = new mysqli('localhost', 'root', '1111', 'lib');
查询mysql语句:
$res = $mysqli->query('select * from tb_student');
读取的三个函数:
mysql_assoc: 从结果集中取得一行作为关联数组
mysql_array: 从结果集中取得一行作为关联数组,或数字数组,或二者兼有
mysql_row: 从结果集中取得一行作为数字数组
读取其中的结果:
一、可以一行一行读取:
print_r(mysqli_fetch_assoc($res));
二、可以一起读出来,然后有循环显示:
$n = 0;
while($n < mysqli_num_rows($res)){
echo $row[$n]['stu_num'].$row[$n]['name']."\n";
// echo "string";
$n++;
}