Home > Backend Development > PHP Tutorial > 求教一个有关问题

求教一个有关问题

WBOY
Release: 2016-06-13 13:47:10
Original
831 people have browsed it

求教一个问题
我的PHP文件有2页 第一页传递了一个URL a.php?re=2到第二页
第二页 我定义了一个 的文本框。

问题是我如果获得了aa中的值 我就无法得到re=2这个值 被刷新了。 我用的是GET 这个方法。求教 在PHP中怎么同时得到外页传递的值和本页中的值。

第一页

 

我想在输入框中输入值 然后输出 re的值和输入框中的值

想了好久了 实在是没办法了 求教啊

------解决方案--------------------
你的意思是不仅要得到B.PHP?re=2传来的值的,还要得到 这个里面的值

那你直接用隐藏域先把2存下来


------解决方案--------------------
可以在B.php提交到本页面 
B.php
if($_POST["submit"]) //是提交 不是从a点链接过来的
{
echo "aa的值是".$_POST["aa"];
echo "re的值是".$_POST["re"];
}
?>






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