i have this site:
http://www.kaskelnetworks.com/palmetto?section=main&type=1
...basically, the type signifies if it is a PHP file (1) or HTML file (2) and the section is the file name minus the extension...
<?php
// change the $section var into the file name
if ($type=="1")
{
$inc="$section.php";
}
else if ($type=="2")
{
$inc="$section.htm";
}
include("$inc");
?>
...thats the include part of the script.....now the problem is that people are always telling me that HTML appears in the middle of the page, and sometimes chinese characters, and sometimes even I (on different computers) receive errors saying "include problems from ie5 blah".
how can I correct these problems without changing the whole concept of my site design?