Sessions aint working
Posted: Sun Sep 09, 2007 1:24 pm
I have created a session on a page here:
session start is in my include globally
Now on a different page i put this:
Echo $_SESSION['Area'];
Echo $_SESSION['StreetName'];
Session start still exists on that page also but no echo occurs... What could be the reason ?
session start is in my include globally
$Open = 1;
$Area = $_POST['RegionComboBox'];
$Street = $_POST['StreetComboBox'];
$_SESSION['Area'] = $Area;
$_SESSION['StreetName'] = $Street;
$_SESSION['Open'] = $Open;
Now on a different page i put this:
Echo $_SESSION['Area'];
Echo $_SESSION['StreetName'];
Session start still exists on that page also but no echo occurs... What could be the reason ?