HELP!!! Why doesn't this script work, after I have updated to Php 4.2.2?!?
It works with echo $HTTP_COOKIE_VARS["Testkeks"], but not with echo $Testkeks! Why?!?
<?
SetCookie("Testkeks","true",0,"/");
?>
<head>
<title>Cookie Test</title>
</head>
<body>
<?
if ($Testkeks) echo "Cookie vorhanden";
?>
</body>