#!/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>";
In reply to Thanks all!
by SilverB1rd
in thread Is this safe??
by SilverB1rd
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |