smallkan

Untitled

Jan 24th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. $file = $_GET['url'];
  3.  
  4. header("Content-Description: File Transfer");
  5. header("Content-Type: application/octet-stream");
  6. header("Content-Disposition: attachment; filename=" . basename($file));
  7.  
  8. readfile ($file);
  9. exit();
  10. ?>
Add Comment
Please, Sign In to add comment