embedded.php 175 B

12345678910
  1. <?php
  2. include '../auth.php';
  3. ?>
  4. <?php
  5. if(isset($_GET["filepath"])){
  6. header('Location: MainUI.php?file='.$_GET["filepath"]);
  7. }else{
  8. header('Location: index.php');
  9. }
  10. ?>