我有一個HTML文件,我如何在HTML代碼中使用Perl腳本(日期/小時)? 我的目標:在HTML中顯示日期/小時 注意:單獨這兩個腳本都可以。如何在HTML頁面中調用Perl腳本?
例如: HTML文件:
<html>
<body>
code or foo.pl script
</body>
</html>
Perl腳本(foo.pl):
#!/usr/local/bin/perl
use CGI qw/:push -nph/;
$| = 1;
print multipart_init(-boundary=>'----here we go!');
for (0 .. 4) {
print multipart_start(-type=>'text/plain'),
"The current time is ",scalar(localtime),"\n";
if ($_ < 4) {
print multipart_end;
} else {
print multipart_final;
}
sleep 1;
}