This is what goes at line 86...
Quote:
<? //error checker thingy, don't want the whole thing to fail if one include can't cut it
// this one is the header code (title, css, etc, this will let us change the header in the future
if(!file_exists("include/$header.php") ) {
include("include/headercode.php");
} else {
include("include/$header.php");
}
?>
|
Unsure why that would interfere with anything... strange.