i have created one pl cript and running it in windows using browser
here is the simple code
Code: Perl
#! /usr/bin/perl
$obj=new CGI();
print $obj->header();
print <<"BHAVIN";
<H1>HELLO WORLD
BHAVIN
and its it giving me following error
CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:
Can't find string terminator "BHAVIN" anywhere before EOF at C:\Inetpub\Scripts\A.pl line 7.

