Dear all,
Actually i posted before, but nobody replied, may b i asked the question wrongly.
Page A post data from form 1 to form 2 on Page B.
Page B has 2 buttons, one to submit to page C and one to go back to page A.
Once they click on button to go to page A, the previous data they entered should appear. Previously i used hidden variables, and the data appeared. Now since i have more than 100 fields, i'm unable to do so.
I've read abt $HTTP_POST_VARS and $_POST and tried to use it be in vain. Please help me out.
Here's how i try to retrieve the data on Page A
$address=stripslashes($HTTP_POST_VARS['address']);
<input type="text" name="address" maxlength="120" size="40" style="width:300px" value="<?=$address?>">
the value is empty! can some1 please help me out.
I even tried printing posted variables as follows:
while(list($pkey, $pvalue)=each($_POST))
echo $pkey." = ".$pvalue."<br>";
but still no value =(
please help out thx.