Click to See Complete Forum and Search --> : Need script for writing file


rozeltf
03-25-2003, 06:40 PM
Can anyone recommend a script that I can use to write (append) to a text file the results of a form?
It would simply be the values separated by commas


Thanks

Nedals
03-25-2003, 06:47 PM
open(FIL,">>$path/$filename") || die "cannot open $filename";
print FIL "$datastring\n";
close(FIL);