PHP 连接数据库

时间:2021-01-13 17:24:08

初学 PHP ,写个简单的例子留着,说不定以后有用。

先准备一个数据库和一个信息表


为了方便查看,我加了个table


<table border="1px" cellpadding="0" cellspacing="0"><?php
$conn = mysql_connect("localhost","1234","1234"); // 连接数据库服务器 (数据库地址,用户名,密码)
mysql_query("set names 'utf-8'"); // 设置字符集编码格式
mysql_select_db("test",$conn); // 连接数据库
$result = mysql_query("select * from userinfo",$conn);// 创建结果集
if($result){
//$row = mysql_fetch_assoc($result);//取出结果集中当前指针指向的行并保存到数组
while($row = mysql_fetch_array($result)){ // 打印结果
echo "<tr><td>".$row['id']."</td><td>".$row['username']."</td><td>".$row['age']."</td></tr>";
}
}else{
echo "没有数据";
}

mysql_close($conn);// 关闭连接
?>

</table>

最终结果:

PHP 连接数据库