我正在使用这样的会话将变量传递到 url 中的另一个页面,但似乎我无法将另一个变量连接到同一个 url 并在下一页成功检索它
第 1 页
session_start();
$event_id = $_SESSION['event_id'];
echo $event_id;
$url = "http://localhost/main.php?email=" . $email_address . $event_id;
第2页
if (isset($_GET['event_id'])) {
$event_id = $_GET['event_id'];}
echo $event_id;
echo $event_id
Undefined variable
在第 2 页上显示错误,但如果我event_id
在$url
这里只使用类似的
$url = "http://localhost/main.php?event_id=" . $event_id;
这很好用,但我需要能够在 url 中使用这两个变量,以便第 2 页可以检索到它们。