php传值有关问题

WBOY
Release: 2016-06-13 09:59:43
Original
849 people have browsed it

php传值问题
我有个页面有两部分,分别为两个php文件,一个是a.php一个是b.php,现在a.php里有个链接
'.$table[$i]["title"].'
在b.php里我用$id=$_GET["id"];来接受,但$id没取到值的,页面地址栏里是有值的b.php?id=xxx

------解决方案--------------------
echo ''.$table[$i]["title"].'';
------解决方案--------------------
既然你能确定地址栏是有值的应该不可能出现你说的情况。
------解决方案--------------------
echo ''.$table[$i]["title"].'';
?>
如果你直接在php中的html格式是:echo ''.$table[$i]["title"].'';那么应该是类似如下格式:
------解决方案--------------------
难道是你的$_GET 没有设置。没有在php.ini中看起 自动接收参数。
------解决方案--------------------
你自己输入个连接。。。看看B页里有没有输出。如果没有有可能就是你伪静态的问题。贴出来看看
------解决方案--------------------
$_REQUEST["id"];
------解决方案--------------------
页面跳转用 header ( 'Location:index.php' );吧 我感觉还行

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