I've got a strange thing going on.
I'm writing a cookie as follows:
Everything works fine and the cookie is written.setcookie("CookieName", $CookieValue, time()+3000);
BUT... I only want the cookie to last 20 minutes so I've changed the time to 1200.
The instruction is now setcookie("CookieName", $CookieValue, time()+1200);
PROBLEM: The cookie isn't written anymore.
So my big question is: Why and can any of you wizzards out there help me?
To prevent any echo problems I'm using <?php ob_start(); ?> and <?php ob_end_flush(); ?> in the beginning and the end of the php-file.
TIA