phppaper Posted February 15, 2011 Share Posted February 15, 2011 I have a textarea and a button, I would like by click a button, the text within the textarea will save as a .txt file and downloadable by user, how to do it with php?? Thanks!! Quote Link to comment https://forums.phpfreaks.com/topic/227705-save-textareas-text-as-a-downloadable-txt-file/ Share on other sites More sharing options...
Ninjakreborn Posted February 15, 2011 Share Posted February 15, 2011 1. State save the text in some way. 2. Echo it out into the text area, and show button below it. 3. When button is clicked, call another file and access the state saved text data. Use this to generate the downloadable file, and pass proper headers for download. http://www.tizag.com/phpT/filecreate.php Quote Link to comment https://forums.phpfreaks.com/topic/227705-save-textareas-text-as-a-downloadable-txt-file/#findComment-1174376 Share on other sites More sharing options...
phppaper Posted February 15, 2011 Author Share Posted February 15, 2011 Thanks! I get the idea, by looking at your URL: $ourFileName = "testFile.txt"; $ourFileHandle = fopen($ourFileName, 'w') or die("can't open file"); fclose($ourFileHandle); Where should I input the textarea's text?? I am not that good with this, please help! 1. State save the text in some way. 2. Echo it out into the text area, and show button below it. 3. When button is clicked, call another file and access the state saved text data. Use this to generate the downloadable file, and pass proper headers for download. http://www.tizag.com/phpT/filecreate.php Quote Link to comment https://forums.phpfreaks.com/topic/227705-save-textareas-text-as-a-downloadable-txt-file/#findComment-1174380 Share on other sites More sharing options...
Ninjakreborn Posted February 15, 2011 Share Posted February 15, 2011 http://www.tizag.com/phpT/filewrite.php Quote Link to comment https://forums.phpfreaks.com/topic/227705-save-textareas-text-as-a-downloadable-txt-file/#findComment-1174381 Share on other sites More sharing options...
phppaper Posted February 15, 2011 Author Share Posted February 15, 2011 Nice Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/227705-save-textareas-text-as-a-downloadable-txt-file/#findComment-1174382 Share on other sites More sharing options...
Ninjakreborn Posted February 15, 2011 Share Posted February 15, 2011 Your welcome. Quote Link to comment https://forums.phpfreaks.com/topic/227705-save-textareas-text-as-a-downloadable-txt-file/#findComment-1174383 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.