I installed the latest php v4.3 and mysql on IIS. Things seemed to work. but now when I uploaded my pages that used to exist on Apache (that worked fine) to IIS /wwwroot I get all kinds of variable issues that look similar to:
Notice: Undefined variable: artist in c:\inetpub\wwwroot...\my_test_page.php on line 16
It seems that with anything with a variable?=something IIS doesnt like it. Is there a default setting I missed?
================CODE===========================
<td valign="top" colspan="2">
<?
switch($artist){
case ("1"):
include "page1.php";
break;
case ("2"):
include "page2.php";
break;
default:
echo "Default Display here";
break;
}
?>
</td>