Mercurial > boosterpack
comparison perltest/simple-ajax-example.cgi @ 0:477258d09353 boosterpack
[svn r1] initial import
author | robert |
---|---|
date | Sun, 30 Aug 2009 02:19:26 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:477258d09353 |
---|---|
1 #!C:/strawberry/perl/bin/perl.exe | |
2 use CGI; | |
3 | |
4 $query = new CGI; | |
5 | |
6 $secretword = $query->param('w'); | |
7 $remotehost = $query->remote_host(); | |
8 | |
9 print $query->header; | |
10 print "<p>The secret word is <b>$secretword</b> and your IP is <b>$remotehost</b>.</p>"; |