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 s
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:
func
2 matches
Mail list logo