Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <meta name="author" content="Mein Name">
- <meta http-equiv="cache-control" content="no-cache">
- <title>Website</title>
- <link rel="stylesheet" type="text/css" href="styles.css">
- <link href="img/ico.png" rel="SHORTCUT ICON" type="image/ico">
- </head>
- <body>
- <div style="width:1280px;margin:0px auto;text-align:left;border:solid 5px;">
- <div id="head"><?php include ('inc/head.inc.php'); ?></div>
- <div id="nav"></div>
- <div id="content">
- <?php
- $content = (isset($_GET['site'])) ? $_GET['site'] : "";
- if(file_exists('inc/'.$content.'.inc.php')){
- include('inc/'.$content.'.inc.php');
- }else{
- include ('inc/home.inc.php');
- }
- ?>
- </div>
- <div id="footer"><?php include ('inc/footer.inc.php'); ?></div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement