: I have an html page with a textbox in it and I want to write the content of it in a file.
:
use strict;
use CGI;
my $file = "results.txt"
open(RESULTS,">>$file") || die "Couldn't open $file: $!";
print RESULTS param('opinion');
close(RESULTS);
this appends the data to the file
~~
Perl~~
Visual Basic~~
JavaScript~~
SuperJoe