Posting to txt file


#write to file

$sting =' Some text to write into the text file. ';
$file ="sometext.txt";
$openfile = fopen($file, "w") or die ("couldnt open file");
fwrite ($openfile, $string);
fclose ($openfile);

Thats all fokes.

PHP.net Has great Tutorials