Whats wrong with this code? I try using it and get this error:
"Parse error: parse error in C:\Inetpub\wwwroot\wmc\index2.php on line 2
PHP Parse error: parse error in C:\Inetpub\wwwroot\wmc\index2.php on line 2 "
It'll probaly end up being stupid but I can't seem to figure it out! The same code works to include my style sheets but it won't work for this!
<?php
if ($temp==Temp_01) {
include ("templates/temp1.inc") ;
}
elseif ($temp==Temp_02) {
include ("templates/temp2.inc") ;
}
elseif ($temp==Temp_03) {
include ("templates/temp3.inc") ;
}
else include ("templates/temp1.inc") ;
?>
Please help!