Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. # $file = '/path/to/other/dir/help.htm';
  3. # header("Content-Description: File Transfer");
  4. # header("Content-Type: application/force-download");
  5. # header("Content-Disposition: attachment; filename=".basename($file));
  6. # @readfile($file);
  7. $f = @fopen('C:\Documents and Settings\All Users\Documents\My Dropbox\Help_Bot\Bot_Help.htm');
  8. fpassthru($f);
  9. fclose($f);
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement