Hello there!
I've run into a problem with PHP Includes function, and I have no idea what I have done to my pages. I tried debugging the pages myself and, short of taking all Includes out and replacing with html code (the code is fine in this case), it comes out really messed up.
<?php include ("doctype.php"); ?>
<body>
<div id="container">
<div id="header"><?php include ("header.php"); ?>
</div>
<div id="nav">
<?php include ("nav.php"); ?>
</div>
<div id="presence"><?php include ("presence.php"); ?>
</div>
<div id="body">
<p>Unnecessary code as it's all HTML.</p>
<div id="bar"></div>
<div id="footer"><?php include ("footer.php"); ?>
</div></div></div>
</body>
</html>
I had a theory that I shouldn't do PHP of doctype and head, but when I replaced that back with HTML code, it still didn't work. I have named all my files ending in .php.
The files were fine until I messed with something I can't remember doing and, well, there you have it: www.tdkohnen.com
Thanks for your help in advance!