Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Per http://perldoc.perl.org/CGI.html to make meta tags, the following example is given:

print start_html(-head=>meta({-http_equiv => 'Content-Type',-content => 'text/html'}))

However using the following code:

#!/usr/bin/perl
use strict;
use warnings;
use CGI;

my $cgi = new CGI;
$cgi->autoEscape(undef);
$cgi->html({-head=>meta({-http_equiv => 'Content-Type',-content => 'text/html',-charset=>'utf-8'}),-title=>'Test'},$cgi->p('test'));

I get the following error:

$ perl test.cgi Undefined subroutine &main::meta called at test.cgi line 8.

I'm trying to generate the following tag:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
share|improve this question
Please stop using the dirty old CGI.pm. Use instead a modern and clean web engine such as Dancer or Mojolicious. – dolmen Aug 31 '12 at 9:59

2 Answers

up vote 2 down vote accepted

The meta sub is not imported automatically when you use CGI;. Try with

use CGI "meta";

(or ":all").

share|improve this answer
#!/usr/bin/perl
use strict;
use warnings;
use CGI qw(:all);

my $cgi = new CGI;
$cgi->autoEscape(undef);
$cgi->charset('utf-8');
print
    $cgi->start_html(
        -head  => meta({-http_equiv => 'Content-Type', -content => 'text/html'}),
        -title => 'Test'
    );

But, are you 100% sure than want use CGI for web development and not something better, like PSGI/Plack?

share|improve this answer
Choices are limited, I am making a page to work inside of Netcool/Omnibus, which uses its own Websphere HTTP server it plays best with Perl. – Mose May 28 '11 at 8:02
PSGI/Plack IS perl. ;) but, ok, i don't know Omnibus. Anyway, if Omnibus can act as a proxy, here should be no problem, because you simply proxying requests to Plack. And Plack really speed up any perl web-app development. ($0.02) :) – jm666 May 28 '11 at 9:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.