On Thu, 24 Jul 2003, Dan Muey wrote:
> > > print $a->header('text/html');
> >
> > Even after removing all the arguments inside the header i got
> > the same
> > error.This is true even without specifying new line as in the
> > second case.
>
>
> Ok then, make sure there's no output before
> > print $a->header('text/html');
>
> Even after removing all the arguments inside the header i got
> the same
> error.This is true even without specifying new line as in the
> second case.
Ok then, make sure there's no output before that header() line.
Make sure the web server is configure
On Thu, 24 Jul 2003 23:50:17 +0530 (IST), Visu <[EMAIL PROTECTED]> wrote:
> Hi,
> I have a cgi code like the one below.when i run this program
> i got the error message as premature end of script headers in my server's
> error log.I am new to this
> Hi,
Howdy!
> I have a cgi code like the one below.when i run this program
> i got the error message as premature end of script headers in
> my server's
> error log.I am new to this CGI module.
>
> use CGI;
> $a=CGI->new();
> print $a->header("text/html\n\n");
Header() does text/html
On Thu, Jul 24, 2003 at 11:50:17PM +0530, Visu wrote:
> Hi,
> I have a cgi code like the one below.when i run this program
> i got the error message as premature end of script headers in my server's
> error log.I am new to this CGI module.
>
> use CGI;
> $a=CGI->new();
> print $a->header("t
Hi,
I have a cgi code like the one below.when i run this program
i got the error message as premature end of script headers in my server's
error log.I am new to this CGI module.
use CGI;
$a=CGI->new();
print $a->header("text/html\n\n");
@name=$a->param;
foreach(@name)
{
@values=$a-