Advertisement
Guest User

Untitled

a guest
Jan 6th, 2012
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.52 KB | None | 0 0
  1. <?php
  2. include('inc/functions.php');
  3. global $url;
  4. ConnectDB();
  5.  
  6. define("IN_MYBB", 1);
  7. define("NO_ONLINE", 1);
  8.  
  9. require_once "forum/global.php";
  10.  
  11. global $mybb;
  12.  
  13. echo $mybb->user['uid'];
  14.  
  15. ?>
  16. <!DOCTYPE html>
  17. <html>
  18.     <head>
  19.         <meta charset="utf-8">
  20.         <link rel="stylesheet" type="text/css" href="<?php echo $url; ?>stylesheet.css" />
  21.         <link rel="stylesheet" type="text/css" href="<?php echo $url; ?>viewer/tsstatus.css" />
  22.         <script type="text/javascript" src="<?php echo $url; ?>viewer/tsstatus.js"></script>
  23.         <script src="http://code.jquery.com/jquery-latest.js"></script>
  24.         <script src="<?php echo $url; ?>js/functions.js"></script>
  25.         <title>Fluppentruppe - Riocht DE</title>
  26.         </head>
  27.     <body>
  28.         <header>
  29.         </header>
  30.         <nav>
  31.             <ul>
  32.                 <li<?php IsActive($site, 'home'); ?>><a href="<?php echo $url; ?>">Home</a></li>
  33.                 <li<?php IsActive($site, 'member'); ?>><a href="<?php echo $url; ?>member">Mitglieder</a></li>
  34.                 <li<?php IsActive($site, 'about'); ?>><a href="<?php echo $url; ?>about">&Uuml;ber uns</a></li>
  35.                 <li<?php IsActive($site, 'achievements'); ?>><a href="<?php echo $url; ?>achievements">Erfolge</a></li>
  36.                 <li<?php IsActive($site, 'apply'); ?>><a href="<?php echo $url; ?>application">Bewerbung</a></li>
  37.                 <li><a href="<?php echo $url; ?>forum">Forum</a></li>
  38.             </ul>
  39.         </nav>
  40.         <section id="all">
  41.             <article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement