I have a friends site that was working for 2 years on my old unix web server, and we moved to a Windows server a few months ago.
The server HAS php support, however, in one of his pages when you go to
http://www.blalblahblah.com/gallery.php?x=selectits supposed to show the code in the IF statement below which is at the near top of the page...
if ($x == "select")
{
print("Gallery Selection");
print("Other HTML Here");
}
else
{
print("Error");
}
When I go to the page, it shows up fine, no php errors, the INCLUDE() functions work fine, but everything in that IF statement doesnt show up.
anyone else had this problem before?