in reply to Forms and CGIs

You can examine $ENV{QUERY_STRING}, $ENV{UNPARSED_QUERY_STRING}, or just look at $query->keywords, which will split each argument to your script and return an array.
http://example.com/cgi-bin/your-script.pl?username my $username = $query->keywords;