|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-07 10:02 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 04:00:01 2025 UTC |
When setting 2 or more cookies after on other, only the last one of those cookies really get set... ex -> setcookie("cookie1","cookie1"); setcookie("cookie2","cookie2"); setcookie("cookie3","cookie3"); <- only this one gets set echo "$_COOKIE["cookie1"] :: $_COOKIE["cookie2"] :: $_COOKIE["cookie3"]"; would return: :: :: cookie3 I use Redhat linux 7.3, PHP 4.2.1 and Apache 2.0.36...