embedded.php 166 B

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