GregArtemides
Programmer
I want to force a download of a .txt file without IE opening it in the browser. I just need the download window to appear. How do I do it?
currently I am using (which opens the text file in the browser):
currently I am using (which opens the text file in the browser):
PHP:
header("Content-type: text/plain");
header("Content-Disposition: inline; filename=somefile.txt");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Pragma: public");
readfile($FilePath);