Hi, I need to be able to read from the cookie to display something like "welcome back John Smith", BEFORE they have logged in. If there is no cookie then it should say hello GUEST. thanks!
Here is something I use on my index page... <?PHP if ($_COOKIE[username]) print "Welcome " . $_COOKIE['username']. " enter the members area <a href='members/member.php'>here</a><br>"; ?>