http://qs1969.pair.com?node_id=56993


in reply to Re: Too late for "-T"?
in thread Is this safe??

So far I have this script that just displays all the fields. Now I need to be able to open the template files for the email securly.
#!/usr/bin/perl -Tw #warnings and taint mode now enabled use CGI; use strict; #you may now use the CGI methods. print "Content-type:text/html\n\n"; print "<html><body>"; my ($query) = new CGI; my (@values, $key); foreach $key ($query->param) { @values = $query->param($key); print "$key = @values\n"; } print "</body></html>";