I recently reinstall PHP (latest) & apache (1.3) again on my computer for testing reasons.
But the strangest thing is happening all of a sudden.. Say I have a PHP script as follows:
<?php
if(!isset($test)) $test = 1;
echo("Test = $test");
?>
And try to access the page like so:
localhost/test.php?test=45
It will always say "Test = 1" no matter what I type when accessing the page..
I put the same file up on my hosted domain and it works 100%, so it's something with my conf..
any ideas?
Thanks!
Nate S.