When I use this script:
My page shows "welcome bezoeker" and the links but after that the whole page is gone so I think that I use it wrong isPHP Code:<?php
if (!isset($_COOKIE['loggedin'])) die("Welcome bezoeker! <a href=register.html>register</a> <a href=login.html >login</a>");
$mysite_username = $HTTP_COOKIE_VARS["mysite_username"];
echo "Welcome $mysite_username! <a href=logout.php>logout</a>";
?>
Who know what I do wrong




Reply With Quote