The processing page capturing the input from the previous page but how could I display the data in form1 when I go back?
In form1, I tried to echo them in the input text value field,
<INPUT TYPE="text" NAME="test" value="<?php echo "$session_var_name[test]";?>" >
but, when I go back they are not getting displayed. But there is no warning message. I registered $session_var_name. When I tried to echo the same in processing page I was getting them.
I tried to access that in the beginning of form1 by assigning to another variable,
<?session_start();
$a1 = $session_var_name[test];
?>
and try to echo $a1. No use.
By the time I am in form2 $session_var_name[test] this has value. When I go back, why can't I see that value? Once it is assigned should it be available to any page.
Where am I doing wrong? Help!!!
Thanks
S