欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

php简单的操作数据库

程序员文章站 2022-05-01 16:01:07
...
<?php
//1,连接数据库
$conn = mysql_connect('localhost','root','root');
if(!$conn){
die("连接失败".mysql_error);
}

//2,选择数据库
mysql_select_db("test");

//3,发送操作语句
$sql="select * from user";

//4,接收结果
$res=mysql_query($sql,$conn);

//5,遍历结果
while($row=mysql_fetch_row($res)){
echo "<br/> $row[0]--$row[1]--$row[2]";
}

//6,关闭
mysql_free_result($res);
mysql_close($conn);

?>