Guest User

Untitled

a guest
Jan 18th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.88 KB | None | 0 0
  1. <?php
  2. include_once('common.php');
  3. ShowHead();
  4. SideBar();
  5. $validPages = array("links", "contact", "change", "404", "privacy", "upload", "about");
  6.  
  7. if (in_array($_GET['id'], $validPages))
  8. {
  9.     include "./pages/underscore/" . $_GET['id'] . ".php";
  10. }
  11. else
  12. {
  13. ?>
  14. <div id="text">
  15. <h1>Featured Games</h1>
  16. <div id="featured">
  17.  
  18.     <div class="container">
  19.     <div class="box spacing"><a href="./games/rpg/crystalstory.php"><img width="200px" height="200px" alt="Crystal Story" src="http://files.gaming-cell.net/1.jpg">Crystal Story</a></div>
  20.     <div class="box spacing"><a href="./games/shooting/lightgun.php"><img width="200px" height="200px" alt="Light Hunter" src="http://files.gaming-cell.net/2.jpg">Light Hunter</a></div>
  21.     <div class="box spacing"><a href="./games/racing/earntodie.php"><img width="200px" height="200px" alt="Earn to Die" src="http://files.gaming-cell.net/3.jpg">Earn to Die</a></div>
  22.     <div class="box"><a href="./games/strategy/pokemontd.php"><img width="200px" height="200px" alt="Crush The Castle" src="http://files.gaming-cell.net/4.jpg">Pokemon Tower Defense</a></div>
  23.     <div class="box spacing"><a href="./games/strategy/megacity.php"><img width="200px" height="200px" alt="Miragine War" src="http://files.gaming-cell.net/5.jpg">MegaCity</a></div>
  24.     <div class="box spacing"><a href="./games/action/hordesofhordes.php"><img width="200px" height="200px" alt="Hordes of Hordes" src="http://files.gaming-cell.net/6.jpg">Hordes of Hordes</a></div>
  25.     <div class="box spacing"><a href="./games/rpg/triggerknight.php"><img width="200px" height="200px" alt="Pulo" src="http://files.gaming-cell.net/7.jpg">Trigger Knight</a></div>
  26.     <div class="box"><a href="./games/strategy/allthatmatters.php"><img width="200px" height="200px" alt="All That Matters" src="http://files.gaming-cell.net/8.jpg">All That Matters</a></div>
  27.     </div>
  28. </div>
  29. </div>
  30. <?php
  31. }
  32. ShowFoot();
  33. ?>
Add Comment
Please, Sign In to add comment