#!/usr/bin/perl # # ' HelloWorldResponsePOST.pl # ' -------- # ' # ' Print the name that is passed in the # ' 'name' POST parameter in a sentence # use strict; use CGI; my $cgi = CGI::new(); print $cgi->header(-type => "text/html; charset=utf-8"); print "Hello " . $cgi->param('name') . ", welcome to the world of Dojo!\n";