Re: global



Thanks Andy, I was preparing a runable piece of code to post and came across the problem! I changed a variable name in an include file which was causing the problem. Need some sleep!

Cheers.


Andy Hassall wrote:
On Wed, 29 Jun 2005 20:35:18 +0000 (UTC), mark <mark@xxxxxxxxxxxxx> wrote:


$myvar = "test";

function myfunc() {
global $myvar;
echo $myvar;
}

However, when echoing $myvar it is blank. Can anybody tell me what I am doing wrong?


 Post a runnable piece of code that demonstrates the problem - the one you just
posted does not call the function.

.



Relevant Pages

  • Re: global
    ... >function myfunc() { ... when echoing $myvar it is blank. ... Prev by Date: ...
    (comp.lang.php)
  • global
    ... function myfunc() { ... global $myvar; ... echo $myvar; ... when echoing $myvar it is blank. ...
    (comp.lang.php)