|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-08 02:29 UTC] derick@php.net
[2002-05-08 02:46 UTC] chros at freemail dot hu
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 16:00:01 2025 UTC |
The problem is, that I couldn't transmit the SID constant in URL under PHP 4.2.0 win32! (the session_name() . "=" . session_id() works) for example: header("Location: temp.php?" . SID); <a href="temp.php?<?php echo SID ?>">temp</a> or a much simplier example: within a page: <?php start_session(); echo SID; ?> Nothing happens .... Is it a bug or just I'm stupid (I forgot something with the variable scope) ??? OS: WinXP Apache with PHP CGI php4.2.0 win32 !!! register_globals off; auto_tans_sid on; chros