home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / security / htdocs / index.php < prev    next >
PHP Script  |  2007-12-20  |  903b  |  25 lines

  1. <?php
  2.     if (file_get_contents("lang.tmp") == "") {
  3.         header("Location: splash.php");
  4.         exit;
  5.     }
  6. ?>
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
  8.     "http://www.w3.org/TR/html4/frameset.dtd">
  9. <html>
  10.     <head>
  11.         <meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang, Carsten Wiedmann">
  12.         <link rel="icon" href="img/xampp.ico">
  13.         <?php include "lang/".file_get_contents("lang.tmp").".php"; ?>
  14.         <title><?php echo $TEXT['global-xampp']; ?> <?php include '.version'; ?> | Security Section</title>
  15.     </head>
  16.  
  17.     <frameset rows="68,*" border="0" framespacing="0">
  18.         <frame name="head" src="head.php" frameborder="0" scrolling="no">
  19.         <frameset cols="170,*" border="0" framespacing="0">
  20.             <frame name="navi" src="navi.php" frameborder="0" scrolling="auto">
  21.             <frame name="content" src="security.php" frameborder="0" marginwidth="20">
  22.         </frameset>
  23.     </frameset>
  24. </html>
  25.