ricop522

[PHP] Forçar Download

Apr 8th, 2012
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1.     $sFile = './arquivo/imagem.txt';
  2.     header('Content-type: application/oct-stream');
  3.     header("Content-Disposition: attachment; filename=\"$sFile\"");
  4.     readfile("ftp://login:senha@host/$sFile"); 
  5.     exit;
Add Comment
Please, Sign In to add comment