the same happens.. if you have something like this..
--news.php----
if (!$id) {
..code
} else {
..code
}
--news.php----
this would work.. in apache like servers.. if are calling this news.php like news.php?id=5
on windows.. you sould convert this into something like
----news.php---
if (!(isset($if)) {
..code
} else {
.. code
}
I had this problem.. under windows.. this was the way how i solved it..
hope this helps.. some 1 :\
have a nice, day night 😉