but, I mean I haven't start the global variable BEFORE the function is
called...
"Jasper Bryant-Greene" <[EMAIL PROTECTED]>
wrote:[EMAIL PROTECTED]
> <?php
> $someGlobalVariable = 'foo';
>
> function myFunction() {
> global $someGlobalVariable;
>
> // do stuff with $someGlobalVariable
> }
> ?>
>
> Jasper
>
> Wong HoWang wrote:
>> as title, how to start a global variable within a function?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to