|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-07-12 20:36 UTC] jani@php.net
[2007-07-13 21:27 UTC] alex__rider at hotmail dot com
[2007-07-14 09:06 UTC] jani@php.net
[2007-07-14 10:26 UTC] alex__rider at hotmail dot com
[2007-07-14 10:55 UTC] jani@php.net
[2007-07-14 11:08 UTC] alex__rider at hotmail dot com
[2007-07-14 11:09 UTC] jani@php.net
[2007-07-14 11:32 UTC] alex__rider at hotmail dot com
[2007-07-14 20:52 UTC] jani@php.net
[2007-07-14 20:53 UTC] jani@php.net
[2007-07-14 21:59 UTC] alex__rider at hotmail dot com
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 01:00:01 2025 UTC |
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