|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-04-12 23:25 UTC] rasmus at cvs dot php dot net
[2000-04-13 02:34 UTC] tim dot nelson at mindspring dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 07:00:01 2025 UTC |
When I use both setcookie and header the cookie does not get written. For example... The following writes a cookie properly setcookie("name", "value", time()+86400); The following does not... the cookie just never materializes. header("Location: nextpage.php3"); setcookie("name", "value", time()+86400); I am using identical code at mindspring and my local NT server, and mindspring works (v3.0.14 on alpha/Linux) but my machine does not (v3.0.16 intel/NT).