Hi all just a quick one what is wrong with the following code
$var = $_SESSION['whatever'];
when i do a
echo $var;
Nothing is outputed but it works with
echo $_SESSION['whatever'];
How do you assign a session var to another var for use in scripts ?
thanks
TWCMAD