gpt4 book ai didi

Perl CGI : Error message:
malformed header from script. Bad header=:

转载 作者:行者123 更新时间:2023-12-01 04:00:00 25 4
gpt4 key购买 nike

我遇到了上述错误。

主要脚本在下面

#!/opt/lampp/bin/perl
use lib "/opt/lampp/htdocs/PERL";
use warnings;
use strict;
use CGI;
use CGI::Carp qw(fatalsToBrowser warningsToBrowser);
use WEBPAGE::PageDesign;
use HTML::Form;

my $header = get_header() ;
my $html = parse_form(\%ENV);

print "Content-type: text/html\n\n";
print <<HTML;
$header
$html
HTML

生成的 html 是正确的,但带有 html 页面的脚本后跟错误
Error message:
<br />malformed header from script. Bad header=&lt;body&gt;: publish_scholarship.pl,

最佳答案

将打印标题行移到顶部。如果它仍然不起作用,则将其移至 BEGIN 块。

use warnings;
use strict;

BEGIN {
print "Content-type: text/html\n\n";
}

use lib "/opt/lampp/htdocs/PERL";
use CGI;
use CGI::Carp qw(fatalsToBrowser warningsToBrowser);
use WEBPAGE::PageDesign;
use HTML::Form;


my $header = get_header() ;
my $html = parse_form(\%ENV);

print <<HTML;
$header
$html
HTML

关于Perl CGI : Error message: <br/>malformed header from script. Bad header=<body>:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14126144/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com