とあるエンジニアの闇歴史帳

コピペで使える便利Wiki ※現在構築中です。

ユーザ用ツール


サイドバー

言語

サーバ関連

ツール

API

読み物

その他

perl:cgi_helloworld

HelloWorld! - Perl,CGI

この記事は2006年02月15日に書かれたものです。

ご挨拶です。

サンプル

#!/usr/bin/perl
 
#-- ヘッダ --#
$|=1;
print "Content-type: text/html\n\n";
 
#-- 内容 --#
print <<"END_OF_HTML";
<html lang="ja">
<head>
<title>Hello World</title>
<body>
<h1>Hello World!</h1>
</body>
</html>
END_OF_HTML
 
exit(0);

関連書籍

failed to fetch data: unkown error

failed to fetch data: unkown error

failed to fetch data: unkown error

関連ページ

perl/cgi_helloworld.txt · 最終更新: 2020/06/23 14:10 (外部編集)