Perl
概要 [#uead3091]
CGIの動作許可後に稼働チェック用で下記プログラムを「test.cgi」などの名前で保存してアップロードしてください。
内容 [#u812212f]
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<html><head><title>CGI-Perl TEST</title>\n";
print "<meta http-equiv='content-type' content='text/html; charset=shit-jis'>\n";
print "</head><body><h2>Hello, This is CGI-Perl Server on Test01 Server.</h2>\n";
print "</body></html>\n";
exit;