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