Doesn't 'global' only get variables from outside the function into it???? OP
(I think) wanted the variables within the function to work outside it.

Justin


on 06/11/02 2:44 AM, Jason Wong ([EMAIL PROTECTED]) wrote:

> On Tuesday 05 November 2002 23:56, Francisco Vaucher wrote:
> 
>> This doesn't work. I need to get some variables values out of the function.
>> Is there a way to make te variables defined in the function 'global' ? So I
>> can use them after the function call.
> 
> Declare them as global:
> 
> <?
> doo(123);
> echo $dah;
> 
> function doo($param) {
> global $dah;
> 
> $dah = $param * $param;
> }
> ?>
> 
> 


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

Reply via email to