Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
响应 URL 是worldpay-response.php。当我这样做时print_r($_POST);,我得到了从 WorldPay 返回的数组。但是,当我尝试将发布的变量保存到会话中并重定向到确认页面时
worldpay-response.php
print_r($_POST);
元 http-equiv="刷新" 内容="0;url=http://localhost/confirmation.php"
$_SESSION变量没有它们。你知道我该如何解决这个问题吗?
$_SESSION
提前致谢。
我唯一能想到的是:
确保在代码的第一行使用 session_start()。
我希望这有帮助。
这可能与您正在执行的重定向类型有关。为什么不使用 PHP 来做呢?
header("Location: " . http://localhost/confirmation.php);