show/hide this revision's text 2 added 226 characters in body

Most PHP sites should have a file (I call it a header) that you include on every single page of the site. If you put that first line of code in the header file, then include it like this on every page:

 include 'header.php';

you won't have to use the global keyword or anything, the second line of code you wrote should work.

Edit: Oh sorry, that won't work inside functions... now I see your problem.

Edit #2: Ok, take my original advice with the header, but use a define() rather than a variable. Those work inside functions after being included.

show/hide this revision's text 1

Most PHP sites should have a file (I call it a header) that you include on every single page of the site. If you put that first line of code in the header file, then include it like this on every page:

 include 'header.php';

you won't have to use the global keyword or anything, the second line of code you wrote should work.

Edit: Oh sorry, that won't work inside functions... now I see your problem.