in reply to Yet Another CGI question

Or, change your 'use' statement to:
use CGI qw/:standard -no_debug/;
and you won't be prompted. This is useful if your script will be parsing/generating HTML but won't be invoked through the webserver.

--Chris