Advertisement
droidus

Untitled

Sep 28th, 2011
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.00 KB | None | 0 0
  1. <?php
  2. session_start();
  3. require_once('../Connections/uploader.php');
  4. ?>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <style>
  9. body { font: 0.8em Arial, sans-serif; }
  10.             #menu { padding: 0; }
  11.             #menu li { display: inline; }
  12.             #menu li a { background: #ccf; padding: 10px; float:left; border-right: 1px solid #ccf; border-bottom: none; text-decoration: none; color: #000; font-weight: bold;}
  13.             #menu li.active a { background: #eef; }
  14.             .content { float: left; clear: both; border: 1px solid #ccf; border-top: none; border-left: none; background: #eef; padding: 10px 20px 20px; width: 400px; }
  15.             </style>
  16. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  17. <title>Inbox</title>
  18. </head>
  19.  
  20. <body>
  21. <div style="margin-left:auto; margin-right:auto; background-color:#FF9; padding:15px; width:75%;">
  22.  
  23.  
  24.  
  25.  
  26. <ul id="menu">
  27.     <li class="active"><a href="#description">Inbox</a></li>
  28.             <li><a href="#usage">Sent</a></li>
  29.  
  30.             <li><a href="#download">Compose</a></li>
  31.   </ul>
  32.         <div id="description" class="content">
  33.             <h2>Inbox</h2>
  34.             <?php
  35. // PHP CODE HERE
  36. ?>
  37.         </div>
  38.         <div id="usage" class="content">
  39.             <h2>Sent Messages</h2><?php
  40. // PHP CODE HERE
  41.     ?>
  42.  
  43.         </div>
  44.  
  45.   <div id="download" class="content">
  46.     <h2>Compose</h2>
  47.             <a href="http://MYSITE.com/uploader/compose.php">Compose a message here</a>.</div>
  48.         <script src="http://MYSITE.com/jquery.tabify/tabs1.js" type="text/javascript" charset="utf-8"></script>
  49.         <script src="http://MYSITE.com/jquery.tabify/jquery.tabs2.js" type="text/javascript" charset="utf-8"></script>
  50.         <script type="text/javascript">
  51.                
  52.             $(document).ready(function () {
  53.                 $('#menu').tabify();
  54.             });
  55.                    
  56.  
  57.         </script>
  58.  
  59. <hr  />
  60. <span style="font-size:12px;">Copyright 2011 All Rights Reserved. Contact Us. Using this service, you agree to the <a href="#">Terms and Conditions</a>. V 1.0.</span>
  61. </div>
  62. </body>
  63. </html>
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement