home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2007 April / PCpro_2007_04.ISO / files / dsl / NVinst.exe / Scripts / HTTP / 127.0.0.3 / ReloadCMS / admin / frameset.php < prev    next >
Encoding:
PHP Script  |  2007-02-10  |  1.5 KB  |  29 lines

  1. <?php 
  2. ////////////////////////////////////////////////////////////////////////////////
  3. //   Copyright (C) ReloadCMS Development Team                                 //
  4. //   http://reloadcms.sf.net                                                  //
  5. //                                                                            //
  6. //   This program is distributed in the hope that it will be useful,          //
  7. //   but WITHOUT ANY WARRANTY, without even the implied warranty of           //
  8. //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                     //
  9. //                                                                            //
  10. //   This product released under GNU General Public License v2                //
  11. ////////////////////////////////////////////////////////////////////////////////
  12. if(empty($system)) die();
  13. ?>
  14. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Type" content="text/html; charset=<?=$system->config['encoding']?>">
  18. <title><?=__('Administration')?></title>
  19. </head>
  20. <frameset cols="190, *" border="0" framespacing="0" frameborder="NO">
  21.     <frame src="./admin.php?show=nav" name="nav" marginwidth="3" marginheight="3" scrolling="auto">
  22.     <frame src="./admin.php?show=module" name="main" marginwidth="0" marginheight="0" scrolling="auto">
  23. </frameset>
  24. <noframes>
  25.     <body bgcolor="white" text="#000000">
  26.         <p>Sorry, but your browser does not support frames</p>
  27.     </body>
  28. </noframes>
  29. </html>