Advertisement
johnburn

Untitled

Oct 23rd, 2011
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.18 KB | None | 0 0
  1. <?php
  2.  
  3. include("include/session.php");
  4. include("include/db.php");
  5. include("include/utility.php");
  6. ;echo '<html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>'; echo cvl("site_title");echo ' - Admin Panel</title>
  10. <link type="text/css" rel="stylesheet" href="style.css" />
  11. <script type="text/javascript" src="js.js"></script>
  12. </head>
  13. <body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0">
  14. <center>
  15.  <table height="100%" border="0" cellspacing="0" cellpadding="0" class="super">
  16.    <tr>
  17.      <td align="left" height="1">'; include("include/header.php"); ;echo '</td>
  18.    </tr>
  19.    <tr>
  20.      <td align="center" valign="top">
  21.      <table border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
  22.      <tr>
  23.         <td align="center" valign="top" >'; include("include/leftmenu.php");;echo '</td>
  24.         <td align="center" valign="top" >'; include("dashboard.php"); ;echo '</td>
  25.      </tr>        
  26.      </table></td>
  27.    </tr>
  28.    <tr>
  29.      <td align="left" height="1">'; include("include/footer.php"); ;echo '</td>
  30.    </tr>
  31.  </table>
  32. </center>
  33. </body>
  34. </html>';
  35. ?>
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement