: Suggests the name the file should have when saved. Use double quotes around the name to handle spaces safely. 2. Handling Special Characters & UTF-8
php $filename = $_GET['file']; // required for IE, otherwise Content-disposition is ignored if(ini_get('zlib.output_compression')) Stack Overflow Content-Disposition header - HTTP - MDN Web Docs http header download file name
To trigger a "Save As" dialog rather than rendering a file (like a PDF or image) in the browser, you must set the Content-Disposition header to attachment . Content-Disposition: attachment; filename="example.pdf" Use code with caution. attachment : Tells the browser to download the file. : Suggests the name the file should have when saved