Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2013
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta name="author" content="Mein Name">
  4. <meta http-equiv="cache-control" content="no-cache">
  5. <title>Website</title>
  6. <link rel="stylesheet" type="text/css" href="styles.css">
  7. <link href="img/ico.png" rel="SHORTCUT ICON" type="image/ico">
  8. </head>
  9. <body>
  10. <div style="width:1280px;margin:0px auto;text-align:left;border:solid 5px;">
  11. <div id="head"><?php include ('inc/head.inc.php'); ?></div>
  12. <div id="nav"></div>
  13. <div id="content">
  14. <?php
  15. $content = (isset($_GET['site'])) ? $_GET['site'] : "";
  16. if(file_exists('inc/'.$content.'.inc.php')){
  17. include('inc/'.$content.'.inc.php');
  18. }else{
  19. include ('inc/home.inc.php');
  20. }
  21. ?>
  22. </div>
  23. <div id="footer"><?php include ('inc/footer.inc.php'); ?></div>
  24. </div>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement