php连mysql,并取数据。
回复讨论(解决方案)
$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]."
";
?>
$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]."
";
?>
我只取一条数据,比如id=xx的数据
你不都写出来了么?
php怎么在mysql数据库中判断 一条数据是否存在(通过主键判断比如ID),存在的话取出该条数据??求代码实例。
$result=mysql_query("select * from table where id=xx");$num=mysql_num_rows($result);if($num>0){ print_r(mysql_fetch_assoc($result));}
$result=mysql_query("select * from table where id=xx");$num=mysql_num_rows($result);if($num>0){ print_r(mysql_fetch_assoc($result));}
http://bbs.csdn.net/topics/390603052?page=1#post-395676426
解决的话分数都给你...
没法应用了,搞了半天。你看看一起混吧那个,可以参考下。
不要急慢慢学
上一篇: 类继承时构造方法