hey
i was wondering why does session_decode return a value of 1 if i do this
(note : a previous page did this - $_SESSION["greet"] = "hello"; )
<?
session_start();
$strSess = session_encode();
echo $strSess;
echo "<br>";
$strses = session_decode($strSess);
echo $strses;
?>
session_encode returns = greet|s:5:"hello";
how can i get the data back to the previous state which is "hello"
thanks
Comms