- ベストアンサー
※ 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.
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
(1) POSTなら $story = $_POST["story"]; GETなら $story = $_GET["story"]; (2) POSTかGETでデータを受けってからSQLでINSERTなりUPDATEなりを発行する。
お礼
回答ありがとうございました。 回答者さんの言われたやり方でやったところ エラーはなくなったのですが、$storyの文字の読み取りがうまくなされませんでした。 新しい質問を立てよう思います。 ご協力ありがとうございました。