Hi all
I have 2 php scripts. page1.php and page 2.php
On page1.php i have 2 variables. $var1 and $var2.
If u submit page1.php i am redirecting the page to page2.php using
header "location:page2.php";
exit();
How can i access the $var1 and $var2 on page2.php
Will it not post the values of the variables to page2.php automatically, so that i can use it.
Thanks
IM