I have two functions like the ones below.  If the first one creates a
variable as global, shouldn't it be accesible to the second function?

function setGlobal() {
        global $test;

        $test = "123";
}

function getGlobal() {
        global $test;

        echo $test;
}


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to