name_1=value_1&name_2=value_2&name_3=value_3 #### city=New+York&date=20010912&max_temp=79 #### #! /usr/bin/perl -w use strict; use CGI qw(:standard); my $city = param('city'); my $date = param('date'); my $max_temp = param('max_temp'); print header( -type=>'text/plain' ), "The hottest it got in $city on $date was $max_temp F.";