in reply to Printing variables from CGI form (was: I know this is very easy)

For OO CGI.pm the save() method is convenient. If you use the function interface save_parameters() is the call.

#!/usr/bin/perl -wT # -*-Perl-*- use strict; use CGI; my $cgi = new CGI; open QFILE, ">> ./data/victims.txt"; $cgi->save(QFILE); close(QFILE);

After Compline,
Zaxo