I'm playing with some PHP for my website. How do I set the length of a text box that the user types in? Also, what is the code for making multiple line text boxes?
Thanks.
|
|
|||
|
|
|
http://www.w3schools.com/TAGS/tag%5Ftextarea.asp http://www.w3schools.com/TAGS/tag%5Finput.asp
Not sure I understand, maybe you could show some code that illustrates the problem. I recommend to install the Web developer add-on for firefox, that way you can edit css directly and see the results! https://addons.mozilla.org/en-US/firefox/addon/60 |
|||
|
|
|
|
The preferred method of specifying a "size" (i.e. character width) of an input box is to use the
Multi-line text boxes are called text areas in HTML and the |
||
|
|
|
In html use a |
||
|
|
|
|
I believe you really want to specify this in the HTML code as the
As for multilines, you want to set up a text area instead of a text box.
The Again, not PHP, but HTML. |
||||
|
|
|
The length of a textbox is done with CSS rules or with the size attribute of the tag. ex. A multiple line text box is a Neither of these have anything to do with PHP, but rather are simple HTML. |
|||
|
|