■概要 HTMLフォームからPOSTされたデータをファイルに書き込む ■詳細 HTMLフォームから、nameとmessageの2つのパラメータを受け取り、 それをいい感じにファイルに追記していく。 ■HTMLソース <html> <head> <meta http-equiv=content-type content="text/html; charset=UTF-8"> </head> <body> <form method="POST" action="/cgi-bin/test.cgi"> name <input type="text" name="name"><br> text <textarea name="comment"></textarea><br> <input type="submit" value="submit"> </form> </body> </html> ■