hi, I have a form page in which I accept a few variables and pass it onto another page. Now, how can I pass these same variables to one more page without using sessions? Thanks Aravind
well, try this:
<?php ## page_2.php ## header('Location: page_3.php?var1='.$_POST['var1'].'&var2='.$_POST['var2']); ?>