Since apparently no one in the coding forums could help, figured I'd post this here...
Has anyone else experienced issues with Opera 6.03 not clearing cookies when logging out of a cookie based authentication piece?
Case in point, I want to track users who successfully log out, but Opera has a tendancy to not allow overwrite with a null cookie.
See code:
SetCookie("id");
$tdate = date("m/d/y");
$ttime = date("H:i:s");
//get IP
$ip = $GLOBALS['REMOTE_ADDR'];
$log = fopen("/path/to/tracker/log.log", "a");
fwrite($log,"[$tdate]:[$ttime]:[$ip]:[s: Logged Out]\r\n");
fclose($log);