Text field, supports multi-line text input
When users need to enter a large section of text in a form, a text input field needs to be used.
Grammar:
<textarea rows="行数" cols="列数">文本</textarea>
1, <textarea> tags appear in pairs, starting with <textarea>, End with </textarea>.
2, cols: The number of columns of the multi-line input field.
3, rows: The number of rows in the multi-line input field.
, default value can be entered between the <textarea></textarea> tags.
Example:<form method="post" action="save.php">
<label>联系我们</label>
<textarea cols="50" rows="10" >在这里输入内容...</textarea>
</form>
Display the results in the browser:
new file
<form method="post" action="save.php">
<label>联系我们</label>
<textarea cols="50" rows="10" >在这里输入内容...</textarea>
</form>
Preview
Clear
- Course Recommendations
- Courseware download
The courseware is not available for download at the moment. The staff is currently organizing it. Please pay more attention to this course in the future~
Students who have watched this course are also learning
Let's briefly talk about starting a business in PHP
Quick introduction to web front-end development
Large-scale practical Tianlongbabu development of Mini version MVC framework imitating the encyclopedia website of embarrassing things
Getting Started with PHP Practical Development: PHP Quick Creation [Small Business Forum]
Login verification and classic message board
Computer network knowledge collection
Quick Start Node.JS Full Version
The front-end course that understands you best: HTML5/CSS3/ES6/NPM/Vue/...[Original]
Write your own PHP MVC framework (40 chapters in depth/big details/must read for newbies to advance)

















