Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- What you see:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB">
- <head>
- <title>Gaming Cell
- </title>
- <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
- <meta name="description" content="Free online flash arcade!" />
- <meta name="keywords" content="games,free,online,flash,arcade,gaming,cell" />
- <link rel="stylesheet" type="text/css" href="/screen.css" media="screen" />
- </head>
- <body><div id="wrap">
- <div id="header">
- <img src="/logo.gif" alt="Gaming Cell" style="padding-left: 10px;" height="50" border="0" />
- <ul>
- <li><a href="/">Home</a></li>
- <li><a href="/?id=contact">Contact</a></li>
- <li><a href="/?id=links">Links</a></li>
- <li><a href="/?id=privacy">Privacy Policy</a></li>
- <li><a href="/?id=changelog">Changelog</a></li>
- <li>
- </ul>
- </div><div class="colmask leftmenu">
- <div class="colleft">
- <div class="col1">
- <!-- Column 1 start -->
- <h2>Featured Game</h2>
- <div id="featured">
- <a href="./games/action/faultline.php"><img alt="Featured Game" src="featured.jpg" border="0"></a>
- <br />
- Click the image to play!
- </div>
- <p>
- The featured game is Fault Line! Bring the connectors together to get through the level as fast as possible.
- </p>
- <!-- Column 1 end -->
- </div>
- <div class="col2">
- <!-- Side menu start -->
- <h2 style="border-bottom: 1px #000 solid">Categories</h2>
- <div id="categories">
- <ul>
- <li><a href="/game.php">All Games</a></li>
- <li><a href="/game.php?id=action">Action Games</a></li>
- <li><a href="/game.php?id=shooting">Shooting Games</a></li>
- <li><a href="/game.php?id=racing">Racing Games</a></li>
- <li><a href="/game.php?id=strategy">Strategy/Skill Games</a></li>
- <li><a href="/game.php?id=rpg">Adventure/RPG Games</a></li>
- <li><a href="/game.php?id=other">Other Games</a></li>
- </ul>
- <iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FGaming-Cell%2F217629164932772&width=292&colorscheme=dark&show_faces=false&stream=false&header=false&height=62" border="0" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
- </div>
- <div id="ads">
- <!-- <dignity> -->
- <!-- Begin: adBrite, Generated: 2011-05-25 9:16:34 -->
- <script type="text/javascript">
- var AdBrite_Title_Color = 'FFFFFF';
- var AdBrite_Text_Color = 'FFFFFF';
- var AdBrite_Background_Color = '000000';
- var AdBrite_Border_Color = 'AA0114';
- var AdBrite_URL_Color = '00FF00';
- try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}
- </script>
- <script type="text/javascript">document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="http://ads.adbrite.com/mb/text_group.php?sid=1928447&zs=3330305f323530&ifr='+AdBrite_Iframe+'&ref='+AdBrite_Referrer+'" type="text/javascript">');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));</script>
- <div><a target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=1928447&afsid=1" style="font-weight:bold;font-family:Arial;font-size:13px;">Your Ad Here</a></div>
- <!-- End: adBrite -->
- <!-- </dignity> -->
- </div>
- <!-- Side menu end -->
- </div></div>
- </div>
- <div id="footer">
- <p>PLEASE <u><a href="/?id=contact">REPORT</a></u> ANY MISSING/BROKEN GAMES!</p>
- <p>Copyright © Gaming Cell, a <a href="http://neverpool.com">NeverPool</a> website.</p>
- </div>
- </div>
- <img src="/GClogo.jpg" border="0" height="1px" width="1px">
- </body>
- </html>
- What I see:
- <?php
- include ('common.php');
- ShowHead();
- TopNav();
- $id = $_GET['id'];
- if ($id == 'links')
- {
- include './pages/underscore/links.php';
- }
- else if ($id == 'privacy')
- {
- include './pages/underscore/privacy.php';
- }
- else if ($id == 'contact')
- {
- include './pages/underscore/contact.php';
- }
- else if ($id == 'changelog')
- {
- include './pages/underscore/change.php';
- }
- else if ($id == '404')
- {
- include './pages/underscore/404.php';
- }
- else if ($id == 'todo')
- {
- include './pages/underscore/todo.php';
- }
- else
- {
- ?>
- <div class="colmask leftmenu">
- <div class="colleft">
- <div class="col1">
- <!-- Column 1 start -->
- <h2>Featured Game</h2>
- <div id="featured">
- <a href="./games/action/faultline.php"><img alt="Featured Game" src="featured.jpg" border="0"></a>
- <br />
- Click the image to play!
- </div>
- <p>
- The featured game is Fault Line! Bring the connectors together to get through the level as fast as possible.
- </p>
- <!-- Column 1 end -->
- </div>
- <?php
- }
- ShowLeft();
- echo '</div>
- </div>';
- ShowFoot(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement