Mostly fixable cosmetic stuff, but this has got me stumped:
The login doesn't work at all anymore.
It would appear that one of the two cookies I'm trying to set doesn't get set.
Code: Select all
<?php
if($rememberme)
setcookie ("login_key", $cookie_val, 3153600,"/"); // stay logged in
else
setcookie ("login_key", $cookie_val, 0,"/"); // only good for this session
setcookie ("login_name", $user[user_username], 3153600,"/"); // always store the username.
?>It works fine in IE.
Anyone?
Thanks,
Mike