PHP:多行文本框的便捷小片段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP:多行文本框的便捷小片段相关的知识,希望对你有一定的参考价值。

  1. <?
  2. // Get the message String
  3. $rawString = $_POST['comments'];
  4.  
  5. // Split the string into pieces for processing
  6. $pieces = explode(" ", $rawString);
  7.  
  8. // First element is the subject line
  9. $subject = $pieces[0];
  10.  
  11. // Take the array, delete the first entry, So we can pass it to $message
  12. $messagePieces = array_slice($pieces, 1);
  13.  
  14. // Replace the or add a <br /> if you like.
  15. $message = implode("<br />", $messagePieces);
  16. echo "Subject: ". $subject;
  17. echo "<br />";
  18. echo "Message: ". $message;
  19. ?>
  20. <form action="<? echo $_SERVER['php_self'] ?>" method="post">
  21. <textarea id="comments" name="comments">Your message</textarea>
  22. <input name="send" type="submit" value="Send" />
  23. </form>

以上是关于PHP:多行文本框的便捷小片段的主要内容,如果未能解决你的问题,请参考以下文章

PHP如何传递文本框的值到数据库操作

PHP如何传递文本框的值到数据库操作

怎样写CSS设置多行文本框的显示行数?

自动滚动到由 backgroundworker 更新的多行文本框的底部

如何同步两个多行文本框的滚动?

多行文本框的高度变化