php 超链接传值 报错404解决方法

WBOY
Release: 2016-06-13 12:48:43
Original
1088 people have browsed it

php 超链接传值 报错404
我是这么写的:

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 啊 


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

php
------解决方案--------------------
">
        
 

  这个$id也不能解析吧,用echo输出才行。
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!