home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / xamp / xampp-win32.exe / xampp / index.php < prev    next >
Encoding:
PHP Script  |  2005-02-06  |  778 b   |  26 lines

  1. <?
  2.     if(file_get_contents("lang.tmp")=="")
  3.     {
  4.         header("Location: splash.php");    
  5.         exit();
  6.     }
  7. ?>
  8. <html>
  9. <head>
  10. <link REL="icon" HREF="img/xampp.ico">
  11. <meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang">
  12. <?include("lang/".file_get_contents("lang.tmp").".php"); ?>
  13. <title><?=$TEXT['global-xampp']?> <?include('.version');?></title>
  14.  
  15. <frameset rows="68,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">
  16.     <frame name="head" src="head.php" scrolling=no>
  17. <frameset cols="170,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">
  18.     <frame name="navi" src="navi.php" scrolling=auto>
  19.     <frame name="content" src="start.php" marginwidth=20>
  20. </frameset>
  21. </frameset>
  22. </head>
  23. <body bgcolor=#ffffff>
  24. </body>
  25. </html>
  26.