PHP Redirection with Post Parameters

sami291190

New Member
I have a webpage. This webpage redirects the user to another webpage, more or less the following way:\[code\]<form method="post" action="anotherpage.php" id="myform"> <?php foreach($_GET as $key => $value){ echo "<input type='hidden' name='{$key}' value='http://stackoverflow.com/questions/2865289/{$value}' />"; } ?></form><script> document.getElementById('myform').submit();</script>\[/code\]Well, you see, what I do is transferring the GET params into POST params. Do not tell me it is bad, I know that myself, and it is not exactly what I really do, what is important is that I collect data from an array and try submitting it to another page via POST. But if the user has JavaScript turned off, it won't work. What I need to know: Is there a way to transfer POST parameters by means of PHP so the redirection can be done the PHP way (\[code\]header('Location: anotherpage.php');\[/code\]), too?It is very important for me to pass the params via POST. I cannot use the $_SESSION variable because the webpage is on another domain, thus, the $_SESSION variables differ.Anyway, I simply need a way to transfer POST variables with PHP ^^Thanks in advance!
 
Back
Top