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->param($_);
   print qq/@values\n/;
   }
thanks,
visu

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to