PHP:多行文本框的便捷小片段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP:多行文本框的便捷小片段相关的知识,希望对你有一定的参考价值。
<? // Get the message String $rawString = $_POST['comments']; // Split the string into pieces for processing // First element is the subject line $subject = $pieces[0]; // Take the array, delete the first entry, So we can pass it to $message // Replace the or add a <br /> if you like. echo "Subject: ". $subject; echo "<br />"; echo "Message: ". $message; ?> <textarea id="comments" name="comments">Your message</textarea> <input name="send" type="submit" value="Send" /> </form>
以上是关于PHP:多行文本框的便捷小片段的主要内容,如果未能解决你的问题,请参考以下文章