Advertisement
NeverPool

Index

May 12th, 2011
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.83 KB | None | 0 0
  1. <?php
  2. include ('common.php');
  3. ShowHead();
  4. TopNav();
  5. $id = $_GET['id'];
  6. if ($id == 'links')
  7. {
  8. include './pages/links.php';
  9. }
  10. else if ($id == 'privacy')
  11. {
  12. include './pages/privacy.php';
  13. }
  14. else if ($id =='contact')
  15. {
  16. include './pages/contact.php';
  17. }
  18. else
  19. {
  20. ?>
  21. <div class="colmask leftmenu">
  22.     <div class="colleft">
  23.         <div class="col1">
  24.             <!-- Column 1 start -->
  25.             <h2>Featured Game</h2>
  26.            
  27.  
  28.  
  29. <p style="text-align: center;">
  30.     <a href="./games/shooting/endlesszombierampage.php"><img alt="Featured Game" src="featured.JPG" border="0"></a>
  31.         <br />
  32.     Click the image to play!
  33. </p>
  34. <p>
  35.     The featured game is Endless Zombie Rampage! Find out how long you can last in this bloody, intense shoot 'em up game!
  36. </p>
  37.             <!-- Column 1 end -->
  38.         </div>
  39.        
  40. <?php
  41. }
  42.  ShowLeft();
  43.     echo '</div>
  44. </div>';
  45.  ShowFoot(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement