I've got a php file that Contains Functions. This is included into my main script using an include statement
include("func.php").
In my main file I set some Global Variables. These can be seen within the file func.php but not within the functions definded in there.
I want to be able to reference these variables within the functions. Is this possible and how do I do it.
Cheers
Peter Stephen