我有一个链接:
<a href="All.php?city2=Newyork">Newyork</a>
我有一个值传递给该页面:
<?= $_GET['city2']; ?>
我还有其他页面,例如All.php,Today.php,Tomorrow.php等...
我想把这个值('city2')带到所有页面,例如All.php,Today.php,Tomorrow.php等......我怎么能这样做呢?
答案 0 :(得分:1)
将$_GET['city2']
存储在session
变量中,然后您可以在任何页面中获取city2
的值。
像这样,
// start the session !
session_start();
// store session data
$_SESSION["city2"] = $_GET['city2'];
现在,您可以在任何页面中获取city2
值,例如:echo $_SESSION["city2"];
答案 1 :(得分:0)
将会话中的城市设置在一个页面中,如:
session_start();
if(isset($_GET['city2'])){
$_session['city2'] = $_GET['city2'];
}
然后在其他页面中调用会话,如:
echo $_session['city2'];