I have a session that goes across 4 pages. My third page is this:
<?
include "session";
?>
<form action="form4.php" method="post" enctype="multipart/form-data" name="form1">
<?
echo $PropType;
?>
<input type="submit" name="Submit" value="Next">
</form>
My session file contains:
$HTTP_SESSION_VARS['PropType'] = "$PropType";
The echo shows the correct value. But when I go to form4.php the session is dropped....
form4.php looks like this
<?
include "session";
include 'config';
echo $PropType;
?>
If I see the seesion value in form3.php why doesnt it show in page4.php?