vote up 1 vote down star

all,

I wanted to create a multiline textbox but all the info i googled on it says that i can adjust the length but no the height

How would i create a text box field that i could have a user type comments into for a php script?

this is what I'm currently using

<INPUT TYPE = "TEXT" >

Bonus question:

how do i disable enter in the text box ( like if you hit "this is a test+ enter" it submits the page i want the user to have to click on the submit button at the bottom

flag

66% accept rate

1 Answer

vote up 4 vote down check

Do you mean a textarea? Or an editable div?

link|flag
text area seems the correct one. Can i access that text from a php script? – Crash893 Sep 3 at 18:51
@Crash893 - yes you can, give it a name attribute, and get the value from $_GET or $_POST in PHP. See us.php.net/manual/en/… – karim79 Sep 3 at 19:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.