|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 02:00:01 2025 UTC |
When i set several cookies,only the last works. For example: <?php setcookie('first','value1'); setcookie('second','value2'); echo $_COOKIE['first']; echo $_COOKIE['second']; ?> After I refresh the page,it only print "value2" but not "value1value2".