最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php mysql查询数据
时间:2022-06-24 19:13:22 编辑:袖梨 来源:一聚教程网
php教程
//连接数据库教程
$link_id = mysql教程_connect("localhost","root","") or die("连接失败");
if($link_id)
{
//选择数据库
mysql_select_db("my_test");
//以上为头部数据库连接部分,为以下公用的部分。
if(!$_GET[id]){
//显示用户列表
$sql = "select * from userinfo";
$result=mysql_query($sql);
echo "
编号 | 用户名称 | 性别 | 年龄 | 注册时间 | 详细信息 |
".$row[id]." | ".$row[username]." | ".$row[gender]." | ".$row[age]." | ".$row[regdate]." | 查看 |
}
else
{
//显示指定用户的详细信息
$sql="select * from userinfo where id=".$_GET[id];
$result=mysql_query($sql);
$row=mysql_fetch_array($result);
echo "编号:".$row[id]."
用户名:".$row[username]."
性别:".$row[gender]."
年龄:".$row[age]."
注册时间:".$row['regdate'];
echo "
继续查询";
}
}//end if
?>
相关文章
- 《彩色点点战争》推图常用三大主c玩法详解 01-23
- 《燕云十六声》池鱼林木任务攻略 01-23
- 《大连地铁e出行》查看行程记录方法 01-23
- 《明日方舟》2025春节限定干员余角色介绍 01-23
- 《崩坏:星穹铁道》万敌光锥搭配攻略 01-23
- 《燕云十六声》一药千金任务攻略 01-23