Web/CGI
■ CGI
■ html基本出力
エディタが作ったソースをそのまま貼り付けるだけでCGIから出力できる。
print "Content-type:text/html\n\n";
print <<eof;
(htmlのソース)
eof
exit;
■ Web
by harakin