b">
当前位置:Gxlcms > PHP教程 > php超链接传值报错404

php超链接传值报错404

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

我是这么写的:

a.php文件
$f="select * from deal where user_id='$id'";

$res_f=$conn->query($f);

while($row_f=$res_f->fetch_assoc()) {
?>
">



}
?>


b.php文件
$id = $_GET['id'];
?>



当我点击a.php文件的超链接a时 报错404
The requested URL /index.php was not found on this server

我这里根本没有那个到index.php 啊


我是个新手,各位大侠帮忙啊


回复讨论(解决方案)

">



这个$id也不能解析吧,用echo输出才行。

这个已经解决了 我把 ? 写成 & 了 ,呵呵呵

人气教程排行