时间:2021-07-01 10:21:17 帮助过:4人阅读
1.首先新建数据库,在里面新建数据表test,任意插进去了两条记录如图所示
2.新建php文件。
连接数据库的代码:
$conn=mysql_connect("localhost","root","");//连接数据库服务器 if (!$conn){ die('Could not connect: ' . mysql_error()); } mysql_select_db("mytest",$conn);//选择数据库mytetst mysql_query("set names utf8");//设置编码格式
mysql_connect(servername,username,password);
servername | 可选。规定要连接的服务器。默认是 "localhost:3306"。 |
username | 可选。规定登录所使用的用户名。默认值是拥有服务器进程的用户的名称。 |
password | 可选。规定登录所用的密码。默认是 ""。 |
3.执行数据库的语句,例如查询语句
$arr=mysql_query("select * from test",$conn);
输出查询结果
while($row = mysql_fetch_array($arr)){ echo $row['id'] . " " . $row['num']; echo "
"; }
————————————————————————————————————————
实现结果:
当点击查找全部时,显示:
按id查找时,输入1显示:
完整代码:
"; echo ""; if(isset($_POST['select_all'])){ $arr=mysql_query("select * from test",$conn); while($row = mysql_fetch_array($arr)){ echo " id num name sex bithday "; // echo $row['id'] . " " . $row['num']; // echo " {$row['id'] } {$row['num']} {$row['name']} {$row['sex']} {$row['birthday']}
"; } }else if (isset($_POST['select_sure'])) { $id=$_POST['select_index']; $arr=mysql_query("select * from test where id=$id",$conn); if($row=mysql_fetch_assoc($arr)){ //如果查询的到 echo ""; } } echo ""; mysql_close($conn); ?> {$id} {$row['num']} {$row['name']} {$row['sex']} {$row['birthday']}
以上就介绍了php连接数据库实现简单查询,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。