Hi
I created three pages viz one.html,two.php and three.html .
Code of one.html
<form action='two.php' method=post>
<input type=text name='a'>
<input type=submit>
</form>
Code of two.php
<?php
session_register("var1");
$var1="Hi";
echo $var1;
?>
<a href='three.html'>Click</a>
Code of three.html
Hi welcome to three.html
You can go from one to three easly.
Can you go fromm three to one using internet explorer 'BACK'. No. In page two.php a 'Page Expired massage' is occured.
Why this message ?. I need to set a session variable in middle page.
Can you help me to get second page without
refresh..
Thanks in Advance