Here's one:
$finame = 'whatever.txt';
$fmode = 'a'; /* append */
if( $file == fopen($finame, fmode) )
{
fputs($file, ';How do you like that?';);
fclose( $file );
}Can someone show me a tutorial in PHP for writing to a text file?
http://www.w3schools.com/php/default.asp
try here for starters.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment