Oct 25, 2001 #1 Naits Programmer Oct 10, 2001 90 NO Hi! I want to add text to a text file that has some data from before, how can this be done?
Oct 25, 2001 #2 Glowball Programmer Oct 6, 2001 373 US http://www.phpbuilder.com/manual/ref.filesystem.php has all of the things you can do with files. In particular you need Code: fopen() with the append (a) mode. Take a look at the examples there and on PHP.net and it's pretty simple. Good luck! Upvote 0 Downvote
http://www.phpbuilder.com/manual/ref.filesystem.php has all of the things you can do with files. In particular you need Code: fopen() with the append (a) mode. Take a look at the examples there and on PHP.net and it's pretty simple. Good luck!