当前位置:Gxlcms > PHP教程 > php传值的有关问题求高手

php传值的有关问题求高手

时间:2021-07-01 10:21:17 帮助过:42人阅读

php 传值的问题 求高手

我要在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的内容

人气教程排行