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>";