JayLewis Posted March 11, 2007 Share Posted March 11, 2007 Rite, what i want to do is had an input box with a submit button. When u type a word into the input box and hit submit, the word u wrote is saved into a .txt file. how wud i go about doing this, and so the file is not over writtin each time. for exmple. I type "red" and hit submit... in the .txt file will show "red" you type "Blue" and hit submit ... in the text file it will show: "red Blue" instead of just showing "blue" because it was the last one submitted. Thanks alot Jay. Link to comment https://forums.phpfreaks.com/topic/42184-file_put_contents-post/ Share on other sites More sharing options...
interpim Posted March 11, 2007 Share Posted March 11, 2007 if(isset($_POST['input'])) { $input=$_POST['input']; $myFile = "testFile.txt"; $fh = fopen($myFile, 'a') or die("can't open file"); $stringData = "$input \n"; fwrite($fh, $stringData); fclose($fh); } Link to comment https://forums.phpfreaks.com/topic/42184-file_put_contents-post/#findComment-204660 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.