in reply to Re^2: Checking a header is printed already?
in thread Checking a header is printed already?

Hi,

Thanks for the replies guys.

From looking at that header() bit in CGI.pm, it looks like CGI.pm already does the checking for me? (maybe that would explain why I'm not seing "Content-Type: text/html" printed several times, where the header is called :)

Thanks!

Andy
  • Comment on Re^3: Checking a header is printed already?

Replies are listed 'Best First'.
Re^4: Checking a header is printed already?
by Anonymous Monk on Oct 06, 2009 at 12:25 UTC
    It is an option, you enable it with
    use CGI qw( -unique_headers );
      Ok great, thanks agai for your help :)

      Cheers

      Andy