im getting an error from apache with this function....

function GetName() {
if (!isset($COOKIE["uname"])) {
$username = $guestname;
} else {
$username = $
COOKIE["uname"];
}
return $username;
}

Its causing my apache to be shut down because it generated errors.

    Sounds strange. Only question I have is how this function is supposed to know what $guestname is...

      Write a Reply...