view perltest/simple-ajax-example.cgi @ 6:4246c7ef6487 boosterpack

[svn r8] bug fix -- holos need to be one int three compared to rares
author robert
date Tue, 08 Sep 2009 17:20:52 -0400
parents 477258d09353
children
line wrap: on
line source
1 #!C:/strawberry/perl/bin/perl.exe
2 use CGI;
4 $query = new CGI;
6 $secretword = $query->param('w');
7 $remotehost = $query->remote_host();
9 print $query->header;
10 print "<p>The secret word is <b>$secretword</b> and your IP is <b>$remotehost</b>.</p>";