PHP头条
热点:

php传值的有关问题求高手


php 传值的问题 求高手

 
   
 
 
 
 
 

 
 
 
 
 
/*连接数据库*/
$conn=mysql_connect("localhost","root","111");
mysql_select_db("register",$conn);
mysql_query("set names utf8");
$arr=mysql_query("select * from luntan",$conn);
/*使用while语句循环mysql_fetch_array()函数返回的数组*/
while($result=mysql_fetch_array($arr)){
?>
 
 
 
 
 
  } //结束while循环
?>
 
标题作者发布时间
">
   
 

   
 

   
 


我要在http://localhost/wosheji/lantan/clc.php?id= 6这个页面怎么看到id=6对应着的“内容”?

------解决方案--------------------
PHP code
....................连接数据库代码省略.............
$result=mysql_query("select * from 表名 where id=$_GET['id']");
$arr=mysql_fetch_assoc($result); 
print_r($arr);

------解决方案--------------------
在http://localhost/wosheji/lantan/clc.php?id= 6页面中加入
if(!empty($_GET)){
print_r($_GET);
}
看看输出什么,如果有id值,那么在if的表达式中加入#1的内容

www.phpzy.comtrue/phprm/48899.htmlTechArticlephp传值的有关问题求高手 php 传值的问题 求高手 标题 作者 发布时间 /*连接数据库*/ $conn=mysql_connect("localhost","root","111"); mysql_select_db("register",$conn); mysql_query("set names utf8"); $arr=mysql_query...

相关文章

PHP之友评论

今天推荐