I am using setcookie() to put a cookie on the visitor's machine. When I do
so, the cookie is set for that browser session, but not written to disk.
What am I missing to write it to the disk? Code snippet:
$cookset = setcookie("orig pbx", $_POST['pbx'], 0)
Thanks,
Mike
so, the cookie is set for that browser session, but not written to disk.
What am I missing to write it to the disk? Code snippet:
$cookset = setcookie("orig pbx", $_POST['pbx'], 0)
Thanks,
Mike
Comment