Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. if(isset($_GET['addon'])) {
  3. if(preg_match("^[a-zA-Z0-9-_]*$", $_GET['addon'])) {
  4. if(file_exists($_GET['addon'])) {
  5. header("Content-disposition: attachment;filename=".$_GET['addon'].".zip");
  6. readfile($_GET['addon']);
  7. } else {
  8. echo "Le fichier n'existe pas.";
  9. }
  10. } else {
  11. echo "Le nom du fichier est incorrect.";
  12. }
  13. } else {
  14. echo "Le nom du fichier est incorrect.";
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement