Guest User

Untitled

a guest
Jun 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. $Dateiname = 'Jumpboys-Jumpen.mp3'; # Dateiname der Ausgeben werden soll
  3. header("Content-type: application/octet-stream");
  4. header("Content-disposition: attachment; filename=".$Dateiname);
  5. header("Pragma: no-cache");
  6. header("Expires: 0");
  7. readfile('\Downloads\Jumpboys-Jumpen,oder so(Club Mix).mp3'); # Orginal Filename
  8. ?>
Add Comment
Please, Sign In to add comment