> function test1()
> {$hello="hello";}
>
> function test2()
> {test1();
> print $hello;}
>
> test2();
>
> ?>
> This should print hello. But it does'nt work. Any idea?
Read here to find out why:
http://www.php.net/manual/en/language.variables.scope.php
---John Holmes...
--
PHP General Mai
thanks
> function test1()
> {return "hello";}
>
> function test2()
> {$hello = test1();
> print $hello;}
>
> test2();
>
> ?>
>
> or make it (argh) global
>
> -Original Message-
> From: Michael P. Carel [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, June 25, 2002 3:14 PM
> To: php
> Subje
or make it (argh) global
-Original Message-
From: Michael P. Carel [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 25, 2002 3:14 PM
To: php
Subject: [PHP] using variables in a function within a fuction
Hi to all,
Have problem with this. Im want to use a variable in a function into anot
3 matches
Mail list logo