Nasıl tüm değişkenler POST ile gelen kullanıcıyı yönlendirme

0 Cevap php

I action="script1.php" ile bir html formu var

In script1 I need write all data to the database and redirect to script2.php, but I need all parameters posted to script1 to be sent to script2. mod_rewrite is on

Tüm veri POST yoluyla gelmek ile PHP kullanarak yönlendirebilirsiniz nasıl?

i gibi, bu iğrenç uygulama yapmak ama eğer

<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function Search(){
wpc_form.submit();
}
// -->
</script>
</HEAD>
<BODY onload='Search()'>
 <form name=wpc_form  method="post" action="/script2/">
 <?php
foreach($_REQUEST as $name => $value)
echo '<input type="hidden" name="'.$name.'" value="'.$value.'">'
 ?>

 </form>

0 Cevap