|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-11-28 16:45 UTC] sniper@php.net
[2000-12-02 08:55 UTC] sas@php.net
[2000-12-30 19:39 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 08:00:02 2025 UTC |
Hi, I have two scripts, one -- session_start (); session_register("user_id"); $HTTP_SESSION_VARS["user_id"]=456; --- and second, which is linked from first --- session_start (); if (session_is_registered("user_id")) { echo $HTTP_SESSION_VARS["user_id"]; } --- and echo gives error Undefined index. On linux the same thing work ok. Martin Nedbal