[SOLVED] $output to text file
Posted: Tue Aug 03, 2004 11:41 am
I am a newb at php so please bare with me : )
I have an $output and I would like the output to be written to a text file, I dunno if it should go something like this
and then I dunno... : )
fwrite...
thank you
I have an $output and I would like the output to be written to a text file, I dunno if it should go something like this
Code: Select all
$filename = "/usr/local/something.txt";
$handle = fopen($filename, "r");fwrite...
thank you