[PHP] help with global not working

2009-05-13 Thread Joey
Hello All, I am running into a problem after I moved a site from a server with PHP4 to PHP5. As an example I have a variable defined at the top of my code lets say: $test_mode = no; Then within the code I check if we are in test mode to bypass certain functionality like so:

Re: [PHP] help with global not working

2009-05-13 Thread Marc Steinert
Maybe your code overwrites the variable anywhere? You should think about switching to a constant in that case by using define('TEST_MODE', true); [...] if (TEST_MODE) { [...] } else { [...] } Greetings from Germany Marc Joey wrote: Hello All, I am running into a problem after I moved a