|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-23 04:11 UTC] sniper@php.net
[2003-03-09 18:56 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Mar 03 15:00:01 2026 UTC |
assume the following script: <?php $timer = time() + 3600; header('Set-Cookie: USERID=asdfasdf; expires=' . $timer . '; path=/'); header('Set-Cookie: USERHASH=asd3423423; expires=' . $timer . '; path=/'); ?> php 4.2.3, php 4.3.0, and php 4.3.1 (all on IIS 5.0 on windows 2000 server) all set the USERHASH cookie, but never the USERID cookie. when running this script on Apache 1.3.x and php 4.2.3 on suse linux 8.0 pro, USERID and USERHASH cookies are set. i thought this was fixed with bug #18168