• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:textareaの内容をPerlプログラムに送る)

How to send textarea content to a Perl program

このQ&Aのポイント
  • Learn how to send the content of a textarea to a Perl program using HTML and the Get method.
  • Find out how to save the data from a textarea to a database using either the POST or GET method.
  • Get advice on implementing a program that reads the most common word from the textarea and displays it on a website.

質問者が選んだベストアンサー

  • ベストアンサー
  • calltella
  • ベストアンサー率49% (317/635)
回答No.1

(1) POSTなら $story = $_POST["story"]; GETなら $story = $_GET["story"]; (2) POSTかGETでデータを受けってからSQLでINSERTなりUPDATEなりを発行する。

ilnmfay
質問者

お礼

回答ありがとうございました。 回答者さんの言われたやり方でやったところ エラーはなくなったのですが、$storyの文字の読み取りがうまくなされませんでした。 新しい質問を立てよう思います。 ご協力ありがとうございました。

関連するQ&A