Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<title>Zipped Files | Downloads | Tutorials | Hosting</title>
<link rel="icon" href="image/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="content-language" content="en-gb" />
<meta http-equiv="imagetoolbar" content="false" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="author" content="Christopher Robinson" />
<meta name="copyright" content="Copyright (c) Christopher Robinson 2005 - 2007" />
<meta name="description" content=""/>
<meta name="keywords" content="" />
<meta name="last-modified" content="Thursday, 01 February 2007 12:00:00 GMT" />
<meta name="mssmarttagspreventparsing" content="true" />
<meta name="robots" content="index, follow, noarchive" />
<meta name="revisit-after" content="7 days" />
</head>
<body>
<div id="container">
<div id="navigation">
<ul>
<li><a href="index.php?page=contact">Contact</a>
<li><a href="index.php?page=login">Login</a>
<li><a href="index.php?page=tutorials">Tutorials</a></li>
<li><a href="index.php?page=hosting">Hosting</a></li>
<li><a href="index.php?page=download">Downloads</a>
<li><a href="index.php?page=home">Home</a>
</div>
<div id="content">
<br>
<?php
if (!isset($page))
{
include("blank.php");
}
if(file_exists($_GET['page'].".php")){
include $_GET['page'].'.php';
}
if(file_exists($_GET['page'].".html")){
include $_GET['page'].'.html';
}
if(file_exists($_GET['page'].".txt")){
include $_GET['page'].'.txt';
}
if(file_exists($_GET['page']."folder/.php")){
include $_GET['page'].'/system/login.php';
}
elseif (isset($page) && !@include("$page"))
{
echo "Error Page not found!";
}
?>
</div>
<div id="footer">
<center>Zipped Files - 2009</a>
|
Designed by <a href="http://www.edg3.co.uk/" title="Freelance Web Site Design">edg3.co.uk</a>
</div>
</div>
</body>
</html>

