http://qs1969.pair.com?node_id=210023


in reply to Re: Re: Using the modules I want to use.
in thread Using the modules I want to use.

I'd guess that whicversion.cgi is sending output without an http header. If that's right then you need either
use CGI qw/:standard/; print header;
or just
print "Content-type: text/html\n\n";
before any print commands in your script, which will allow the output from the script to appear in the browser window.

§ George Sherston