rlm@0: #!C:/strawberry/perl/bin/perl.exe rlm@0: use CGI; rlm@0: rlm@0: $query = new CGI; rlm@0: rlm@0: $secretword = $query->param('w'); rlm@0: $remotehost = $query->remote_host(); rlm@0: rlm@0: print $query->header; rlm@0: print "
The secret word is $secretword and your IP is $remotehost.
";