Session Problems
Posted: Wed Feb 17, 2010 9:04 pm
I have been trying to get sessions to work with no luck. Here's some code that i'm using for putting into session and session variable retrieval. If anyone can tell me what's wrong or what i didn't do. and yes I am putting session_start(); on each page but with no success. Thanks for any input.
<?php session_start();
$_SESSION["Name"];
$_SESSION["Email"];
?>
Variable Retrieval:
<?php echo $_SESSION["Name"];?>
Please Help.
<?php session_start();
$_SESSION["Name"];
$_SESSION["Email"];
?>
Variable Retrieval:
<?php echo $_SESSION["Name"];?>
Please Help.