php连mysql,并取数据。php怎么在mysql数据库中判断一条数据是否存在,存在的话取出该条数据??求代码实例。 mysql php 数据库 实例 分享到: ------解决方案-------------------- $conn=mysql_connect("localhost","root","");//连接语句,服务器,用户名,密码 mysql_select_db("test",$conn);//连接本地test数据库 mysql_query("SET NAMES GBK");//设置为中文 $a=mysql_query("select * from stu_info");//选取test数据库中stu_info表 while($row=mysql_fetch_row($a))//当表中数据不为空时读取数据 echo "姓名 :".$row[0]."性别:".$row[1]."年龄: ".$row[2].""; ?>------解决方案--------------------$result=mysql_query("select * from table where id=xx"); $num=mysql_num_rows($result); if($num>0){ print_r(mysql_fetch_assoc($result)); }登入後複製