[snip]
case "world":
$includes = "/includes/world.html";
break; }
include ($include) ?>
It says Line 195 which is the ?>
Would it matter I don't have all of these files (i.e. /includes/world.html) were uploaded yet?
Yeah. You need a ; at the end of the line before that. Like:
include ($include);
You also use $includes in a couple of the cases, like the last one.
- Brad
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php