PHP - Pass POST variables with header()?(PHP - 使用 header() 传递 POST 变量?)
问题描述
我正在尝试使用 header() 函数来创建重定向.我想显示错误消息.目前我正在通过 URL 作为参数发送消息,但这使它看起来很丑陋.
I'm trying to use the header() function to create a redirect. I would like to display an error message. Currently I'm sending the message as a parameter through the URL, however this makes it look quite ugly.
有没有办法将此值作为后变量传递?
Is there a way to pass this value as a post variable instead?
感谢任何建议.
谢谢.
推荐答案
Dan,您可以在 PHP 中启动和存储会话,然后将消息保存为会话变量.这使您不必在 HTTP 请求中传输消息.
Dan, You could start and store a session in PHP then save the message as a session variable. This saves you from having to transfer the message in an HTTP request.
//Start the session
session_start();
//Dump your POST variables
$_SESSION['POST'] = $_POST;
//Redirect the user to the next page
header("Location: bar.php");
现在,在 bar.php
中,您可以通过重新启动会话来访问这些 POST 变量.
Now, within bar.php
you can access those POST variables by re-initiating the session.
//Start the session
session_start();
//Access your POST variables
$temp = $_SESSION['POST'];
//Unset the useless session variable
unset($_SESSION['POST']);
要了解有关会话的更多信息,请查看:http://php.net/manual/en/function.session-start.php
To read more about sessions, check out: http://php.net/manual/en/function.session-start.php
这篇关于PHP - 使用 header() 传递 POST 变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP - 使用 header() 传递 POST 变量?
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01