Hi all:
Trying to set a cookie with no luck..
<?php
session_start();
setcookie("virgin", "No", time()+3600);
?>
It is at the very top of the page. I close out the browser. I open a new page with
echo $_COOKIE["virgin"] on it and nothing appears.
Thanks!