"In PHP3, multiple calls to setcookie() 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. In PHP4, multiple calls to setcookie() are performed in the order called. "
This I found in the set cookie section of the manual for php 4. but to my surprise i found that even in php4 the order in which it is being performed is thereverse of how it is called.
Any explanations?