html - Save as dialog box while downloading a text file using php -
i saving textarea content .txt file using below code.it create test.txt file.
function feed_text_download(){ if(isset($_post['text_to_download'])) { header('content-disposition: attachment; filename=test.txt'); header('content-type: application/txt'); echo $_post['text_to_download']; exit; //stop writing } } add_action('after_setup_theme', 'feed_text_download'); i need change code in such way once click save button, save as box , user can select filename instead of test.txt. need here.
afaik can't force dialog box. users's own browser settings. browsers these days configured download file downloads folder provided filename. if want them choose name of file, you'd have have them choose before click download.
Comments
Post a Comment