如何將文件發送給用戶,以便他們可以選擇目錄和文件名。下面的代碼讓用戶下載文件,但不允許在Firefox中選擇目錄。我該如何解決它?將文件發送給用戶
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');
Ignacio Vazquez-Abrams,仍然不起作用。順便說一句,「總是問」已經設置好了。 – roney 2011-04-26 01:06:01