|
Kaye and Geoff's web page documentation
Perl script: information passed via environment variable QUERY_STRINGThe following Perl code returns a web page containing the information which was passed by a query string at the end of the URL. ';
print "\n\n";
if ($ENV{QUERY_STRING} eq 'odd') { print "1 3 5 7 9 \n"; }
else { print "2 4 6 8 \n"; }
print '';
print '';
exit; |
|
Top Close |