CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>iBlog</title>
<link rel="stylesheet" type="text/css" href="css.css" />
<script type="text/javascript" src="js.js"></script>
</head>
<body id="home">
<div id="page">
<div id="head">
<p id="time"> </p>
<ol id="index">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#article">Articles</a></li>
<li><a href="#contact">Contact/Hire</a></li>
</ol>
</div>
<div id="body">
<p>Content</p>
</div>
<div id="foot">
<ul>
<li><a href="#">example</a></li>
<li><a href="#">example</a></li>
<li><a href="#">example</a></li>
</ul>
</div>
</div>
</body>
</html>
The above is my current document structure. If you need the php code, look at the first post, if you need to know how I have my folder(s)/file(s) structured, look at the third post.
I'm not sure if you get the question Paradoks, I'm using that method, but using the GET method to receive data that contains the page in which I wish to retrieve and display within the div#body (
<div id="body"><p>Content</p></div>).
I would really appreciate it if some one would solve this or direct me to a member of staff who may help me resolve this issue. It's stopping me from further designing/programming for my site, I'm using the site as a remote test server, even though I do have a local one installed which I haven't used in some time.