Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: CGI::Application header problem

by jaldhar (Vicar)
on Dec 27, 2010 at 23:06 UTC ( [id://879335]=note: print w/replies, xml ) Need Help??


in reply to CGI::Application header problem

You need to separate the headers with commas like this:

$this->header_add( -type => 'text/html', -charset => 'UTF-8');

--
જલધર

Replies are listed 'Best First'.
Re^2: CGI::Application header problem
by Anonyrnous Monk (Hermit) on Dec 27, 2010 at 23:36 UTC

    Shouldn't make any difference here (as charset is part of the Content-Type header):

    $ perl -MCGI -E "say CGI->new()->header(-type => 'text/html', -charset + =>'UTF-8')" Content-Type: text/html; charset=UTF-8

    vs. what the OP had:

    $ perl -MCGI -E "say CGI->new()->header(-type => 'text/html; charset=U +TF-8')" Content-Type: text/html; charset=UTF-8

    (CGI::App's header_add is eventually passed to CGI.pm's header method)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://879335]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-04-16 05:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found