frame.php 484 B

12345678910111213141516
  1. <?php header("Content-type: text/html; charset=utf-8");
  2. ?>
  3. <html>
  4. <head>
  5. <script type="text/javascript" src="../br/js/jquery-1.5.1.js"></script>
  6. <?php
  7. $release = preg_match('/release=true/i', $_SERVER['QUERY_STRING']);
  8. if($release == 0 && array_key_exists('f', $_GET))
  9. print "<script type='text/javascript' src='../br/import.php?f={$_GET['f']}'></script>";
  10. else
  11. print "<script type='text/javascript' src='../../../release/all_release.js'></script>";
  12. ?>
  13. </head>
  14. <body>
  15. </body>
  16. </html>