我有一个网页。该网页或多或少地通过以下方式将用户重定向到另一个网页:
<form method="post" action="anotherpage.php" id="myform">
<?php foreach($_GET as $key => $value){
echo "<input type='hidden' name='{$key}' value='{$value}' />";
} ?>
</form>
<script>
document.getElementById('myform').submit();
</script>
嗯,你知道,我所做的是将GET参数转移到POST参数中。不要告诉我这很糟糕,我知道自己,并不是我真正做的,重要的是我从数组中收集数据并尝试通过POST将其提交到另一个页面。但是,如果用户关闭了JavaScript,则无法使用。我需要知道的:有没有办法通过PHP传输POST参数,所以重定向也可以用PHP方式(header('Location: anotherpage.php');
)完成?
通过POST传递params非常重要。我不能使用$ _SESSION变量,因为网页在另一个域上,因此$ _SESSION变量不同。
无论如何,我只需要一种用PHP ^^
传递POST变量的方法提前致谢!
答案 0 :(得分:17)
您可以使用标题重定向POST请求,并包含POST信息。但是,您需要显式返回HTTP状态代码307.浏览器将302视为具有GET的重定向,忽略原始方法。这在HTTP文档中明确指出:
实际上,这意味着在PHP中您需要在重定向位置之前设置状态代码:
header('HTTP/1.1 307 Temporary Redirect');
header('Location: anotherpage.php');
但是,请注意,根据HTTP规范,用户代理必须询问用户是否可以将POST信息重新提交到新URL。实际上,Chrome不会询问,Safari也不会问,但Firefox会向用户显示确认重定向的弹出框。根据您的操作限制,也许这是可以的,但在一般使用情况下,它肯定有可能给最终用户造成混淆。
答案 1 :(得分:12)
不可能直接从服务器执行此操作,因为POST数据应由浏览器发送。
但你可以选择另一种选择:
curl解决方案示例,在域1上运行的代码:
//retrieve GET parameters as a string like arg1=0&arg1=56&argn=zz
$data = $_SERVER['QUERY_STRING'];
// Create a curl handle to domain 2
$ch = curl_init('http://www.domain2.com/target_script.php');
//configure a POST request with some options
curl_setopt($ch, CURLOPT_POST, true);
//put data to send
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
//this option avoid retrieving HTTP response headers in answer
curl_setopt($ch, CURLOPT_HEADER, 0);
//we want to get result as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//if servers support is and you want result faster, allow compressed response
curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');
//execute request
$result = curl_exec($ch);
//show response form domain 2 to client if needed
echo $result;
就是这样,你的客户端的浏览器甚至看不到域2服务器,它只会得到它的结果。知道您是否要将客户端重定向到域,请使用经典的http标头。
header('Location: http://www.domain2.com');
当然,这是带有硬编码值的演示代码,还剩2点:
希望现在更清楚,并会帮助你
答案 2 :(得分:1)
这可以使用php cUrl lib。
完成选中此http://www.askapache.com/htaccess/sending-post-form-data-with-php-curl.html
谢谢, Sourabh
答案 3 :(得分:0)
将您的数据存储在会话中,然后使用GET。
答案 4 :(得分:0)
没有。你不能用POST做头重定向。你有两个选择,
这是一个例子,
<noscript>
<div>
<input type="submit" value="Continue"/>
</div>
</noscript>
如果Javascript关闭,这将显示一个继续按钮,因此用户可以单击继续。
答案 5 :(得分:0)
有可能。在这种情况下,我会使用cURL:
$url = 'http://domain.com/get-post.php';
foreach($_GET as $key=>$value) {
$fields_string .= $key.'='.$value.'&';
}
rtrim($fields_string,'&');
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);
//execute post
$result = curl_exec($ch);
//close connection
curl_close($ch);
答案 6 :(得分:0)
作为@Charles指示的示例,这是一个有效的PHP PayPal购买表格:
请注意:
<?php
// GET POST VARIABLES, ELSE SET DEFAULTS
$sAction=(isset($_POST['action'])?$_POST['action']:'');
$nAmount=(int)(isset($_POST['action'])?$_POST['amount']:0);
// TEST IF AMOUNT OK
$bOK=($nAmount>=10);
/*
TYPICAL CHECKS:
1. Fields have valid values, as a backup to the javascript.
2. Backend can fulfil the request.
Such as whether the requested stock item or appointment is still available,
and reserve it for 10-15 minutes while the payment goes through.
If all OK, you want the new URL page, such as PayPal to open immediately.
*/
// IF OK
if($bOK){
// CHANGE HEADER TO NEW URL
$sURL='https://www.paypal.com/cgi-bin/webscr';
header('HTTP/1.1 307 Temporary Redirect');
header('Location: '.$sURL);
}
?>
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Sample post redirection</title>
</head>
<body>
<?php
// IF NO ACTION OR NOT OK
if(($sAction=='')||!$bOK){
?>
<h1>Sample post redirection</h1>
<p>Throw money at me:</p>
<form name="pp" action="<?=$_SERVER['REQUEST_URI']?>" method="post" onsubmit="check_form(this)">
<!-- <input type="hidden" name="amount" value="<?=$nAmount?>" /> -->
<input type="hidden" name="business" value="paypal.email@yourdomain.com" />
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="lc" value="AU" />
<input type="hidden" name="item_name" value="Name of service" />
<input type="hidden" name="item_number" value="service_id" />
<input type="hidden" name="currency_code" value="AUD" />
<input type="hidden" name="button_subtype" value="services" />
<input type="hidden" name="no_note" value="0" />
<input type="hidden" name="shipping" value="0.00" />
<input type="hidden" name="on0" value="Private" />
<input type="hidden" name="os0" value="Xxxx xxxxx xxxxx" />
<p>Amount $<input id="amount" type="text" name="amount" value="<?=$nAmount?>" /> $10 or more.</p>
<p><button type="submit" name="action" value="buy">Buy</button></p>
</form>
<p>If all is OK, you will be redirected to the PayPal payment page.<br />
If your browser requires confirmation, click the <cite>OK</cite> button.</p>
<script>
// JS AT END OF PAGE TO PREVENT HTML RENDER BLOCKING
// JS FUNCTION FOR LOCAL CHECKING OF FIELD VALUES
function check_form(oForm){
// USE TO DETERMINE IF VALUES CORRECT
var oAmount=document.getElementById('amount');
var nAmount=oAmount.value;
var bOK=true;
var bOK=(nAmount>=10); // EXAMINE VALUES
// IF NOT OK
if(!bOK){
// INDICATE WHAT'S WRONG, ALERT ETC
alert('Stingy @$#&. Pay more!!');
// BLOCK FORM SUBMIT ON ALL BROWSERS
event.preventDefault();
event.stopPropagation();
return false;
}
}
</script>
<?php
}
?>
</body>
</html>
答案 7 :(得分:0)
在POST重定向GET情况下(参见https://en.wikipedia.org/wiki/Post/Redirect/Get),可以使用会话变量作为传输数据的方法。
<?php
session_start();
// return is the name of a checkbox in the post-redirect-get.php script.
if(isset($_POST['return'])) {
// We add some data based on some sort of computation and
// return it to the calling script
$_SESSION['action']="This string represents data in this example!";
header('location: post-redirect-get.php');
}
答案 8 :(得分:0)
你 可以 像以下一样黑客攻击......(我不是说你 应该 强>然而!):
$res = "<form action='/path/to/new/page' method='POST' id='redirectHack'>
<input type='hidden' id='postVar1' name='postVar1' value='12345'>
<input type='hidden' id='postVar2' name='postVar2' value='67890'>
</form>
<script>
document.getElementById('redirectHack').submit()
</script>";
die($res);