Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: Perl  |  size: 0.30 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.        
  3.         $page = "";
  4.         if(isset($_GET['page'])){
  5.                 $page = $_GET['page'].".html";
  6.         }else{
  7.                 $page = "home.html";
  8.         }
  9.  
  10. ?>
  11. <html>
  12. <head>
  13.         <title>Test</title>
  14. </head>
  15. <body>
  16.         <?php include("header.html"); ?>
  17.  
  18.  
  19.         <?php include($page) ;?>
  20.  
  21.  
  22.         <?php include("footer.html"); ?>
  23. </body>
  24. </html>