Fixed setcookie in docs - bug report 4647

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@25460 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mike Robinson 2000-06-03 22:08:45 +00:00
parent ff36f6feb0
commit 49b0754244

View file

@ -128,10 +128,11 @@ header ("Pragma: no-cache"); // HTTP/1.0
the cookie should be visible for.
</simpara>
<simpara>
Multiple calls to <function>setcookie</function> in the same
In PHP3, multiple calls to <function>setcookie</function> in the same
script will be performed in reverse order. If you are trying to
delete one cookie before inserting another you should put the
insert before the delete.
insert before the delete. In PHP4, multiple calls to
<function>setcookie</function> are performed in the order called.
</simpara>
<para>
Some examples follow: