in reply to Web form -- File

Try something like :
use CGI; my $query = CGI->new(); print $query->header(); print "form saved"; open(FILE,">>output") || die $!; $query->save(FILE); close(FILE);
which basically dumps the form data into a file... if you need the separators, you can always add a print FILE "+"x30; :)

Greetz
Beatnik
... Quidquid perl dictum sit, altum viditur.