|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-17 12:51 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 01:00:01 2025 UTC |
I do not know if this is a bug or if I am doing something very wrong <? session_start(); session_register("sess_uid"); $sess_uid=1; //THIS WORKS function foo(){ $sess_uid=2; // WHY WHY WHY IT DOES ---NOT--- WORK echo "<a href='next.php'>Continue</a>"; } foo(); ?>