Tuesday, December 22, 2009

Can someone show me a tutorial in PHP for writing to a text file?

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.

No comments:

Post a Comment