View Single Post
Old Oct 28th, 2004, 4:11 PM   #2
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 6 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
There are two types of ways to store user data. Sessions and cookies. They are not the same thing, they are completely different...

if(!isset($_SESSION)) {
  session_start();
  $_SESSION["here"] = "Drangonfly";
} else echo "<pre>" . var_dump($_SESSION, 1) . "</pre>";
__________________

tempest is offline   Reply With Quote