-1

我有一个链接:

 <a href="All.php?city2=Newyork">Newyork</a>

我有一个传递给该页面的值:

 <?= $_GET['city2']; ?>

我还有其他页面,例如 All.php、Today.php、Tomorrow.php 等...

我想将此值 ('city2') 用于所有页面,例如 All.php、Today.php、Tomorrow.php 等……我该怎么做呢?

4

2 回答 2

1

存储$_GET['city2']in变量,然后您可以在任何页面session中获取 的值。city2

像这样的东西,

// start the session !
session_start();
// store session data
$_SESSION["city2"] = $_GET['city2'];

现在您可以city2在任何页面中获取值,例如:echo $_SESSION["city2"];

于 2012-10-08T12:40:36.427 回答
0

在一个页面的会话中设置城市,例如:

session_start();
if(isset($_GET['city2'])){
    $_session['city2'] = $_GET['city2'];
}

然后在其他页面中调用会话,例如:

echo $_session['city2'];
于 2012-10-08T12:52:19.890 回答