in reply to prototyle mismatch error using LWP::Simple and CGI.
...and of course you can use 'require CGI' instead of 'use CGI', which could have potential benefits.use CGI; use LWP::Simple; my $cgi=new CGI; # LWP's head() print head(); # CGI's head print $cgi->head();
|
|---|