Shouldn't you halt execution after finding a suitable "include" ? Also, why are you using "echo" - is this some fancy trick I don't know yet?
I would do something like this:
For example
<?
if($page=="aboutme") {
include("aboutme.htm");
exit;
}
if($page=="guestbook") {
include("guestbo.php");
exit;
}
(etc.....)
?>
although even better might be to combine the if statements rather than repeating them all the time!
Hope this helps
Richard