2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PerlとCGIについて

Posted at

PerlとCGIの基礎についてやっていきます。

PC内のローカル環境にサーバーを構築して、ドキュメントルートに以下のコードのファイルを作成してください。
今回はローカル環境のサーバーはXAMPPを使います。

文字コードはUTF-8で保存してください。

#!/xampp/perl/bin/perl

print "Content-Type: text/html; charset=utf-8\n\n";
print "\n";
print "<html>\n";
print "<head>\n";
print "<title>テスト</title>\n";
print "</head>\n";
print "<body>\n";
print "これはCGIのテストです。\n";
print "</body>\n";
print "</html>\n";

1行目はサーバーの環境によって変わります。
今回はXAMPPなのでこのようになります。
Perlが実行出来るパスを指定します。

#!/xampp/perl/bin/perl

今回はドキュメントルートのtest_perl3というフォルダにtest1.cgiというファイルを作成しました。

ファイルの拡張子は.cgiにしてください。

実行結果

20220506153803.jpg

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?