Posted by Andrew @ Rockface on 12/06/05 17:24
mgraham81@verizon.net wrote:
> I have created a text box that sis one line. I use the 'size=xxx' to
> make it longer, buit i do not know how to make it taller to show more
> than one line of characters. any help would be appreciated.
Nothing to do with php but what you've described is an 'input' element
with its type set to 'text'. The input element does not have a row or
height attribute. What you need is the 'textarea' element (note the rows
and cols attributes):
<textarea rows=20 cols=20>This is a text box</textarea>
--
Andrew @ Rockface
np: (Winamp is not active ;-)
www.rockface-records.co.uk
[Back to original message]
|