in reply to CGI newbie
can safely be reduced to print $q->header(); Also, notice that you have a comma where you should have a semicolon. (Was this code copy/pasted?)print $q->header( -nph=>1, #unfortunatly IIS -status=>'200 OK', -type=>'text/html'), ^--- ;
Also, it's a good idea to get into the habit early of trying to emit syntacticly valid HTML.
|
|---|