http://qs321.pair.com?node_id=658156


in reply to Help with CGI and pl

Your CGI's first printed response must be:

print "Content-Type: text/plain\n\n";
or
print "Content-Type: text/html\n\n";

based upon the type of response your CGI program is generating. Those two newlines at the end of the string are important. It assures a blank link between your content header and your actual content.