Forum Moderators: coopster
$_COOKIE["$abr"] = $_POST["$abr"];
OTOH, this code _does_ set a cookie:
setcookie("$abr", ($_POST["$abr"])); but you can only read the cookie on the _next_ visit to the page. If you want to set the cookie _and_ have it readable on the same page, then you need both.
;)