ID: 41982
User updated by: alex__rider at hotmail dot com
Reported By: alex__rider at hotmail dot com
-Status: Feedback
+Status: Open
Bug Type: Apache2 related
Operating System: WinXP
PHP Version: 5.2.3
New Comment:
The cookie is never set even with page reloads, my browser is set to
allow cookies, and there is no cookie set when I look at set cookies. I
have tried reinstalling both php and apache with no luck.
Previous Comments:
------------------------------------------------------------------------
[2007-07-12 20:36:35] [EMAIL PROTECTED]
Do you mean it never get set even if you reload the page?
------------------------------------------------------------------------
[2007-07-12 20:30:53] alex__rider at hotmail dot com
Description:
------------
When trying to set a cookie in PHP under Apache2 / winXP, the cookie is
not set.
Reproduce code:
---------------
<?php
setcookie('test','some text', time()+360);
echo 'cookie set<br>';
if (isset($_COOKIE['test']))
{
echo 'cookie retrieved';
}
else
{
echo 'cookie failed';
}
?>
Expected result:
----------------
The out put should read 'cookie retrieved' if the cookie was set
Actual result:
--------------
the output I get is the failed message
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=41982&edit=1