Yes, that's occurred to me. At the time my passwords weren't encrypted.
Having some issues with cookies:
This sets a cookie (I view them using EditThisCookie for Chrome).PHP Code:setcookie('ticket', 'whatwhat_inthebutt');
This does not.
I've tried putting time() + 30; directly in there, but no luck. I've tried making $time a string and escaping it, but that, too, is a fruitless effort.PHP Code:$time = time() + 30;
setcookie('ticket', 'whatwhat_inthebutt', $time);
Is the browser an issue?

