On Thu, 03 Oct 2002 07:34:13 -0400, [EMAIL PROTECTED] (Zentara) wrote: Oops, keep forgetting the header. :-) The following will send the form variables back to the browser.
>####################################################### >#!/usr/bin/perl >use warnings; >use strict; >use CGI; >my $cgi=new CGI; print "Content-type: text/html\n\n"; >my %in = $cgi->Vars(); >foreach my $key (keys %in){ > print "$key\t$in{$key}\n"; > } >###################################################### > > > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]