in reply to Getting username and password from the URL.
#!/usr/bin/perl -w print "Content-type: text/html\n\n<html><body>"; foreach (keys %ENV){ print "$_ -> $ENV{$_}<br>\n"; } print "</body></html>"; [download]