embedded.php 142 B

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