PHP Newsletter

Join now and receive weekly updates pertianing to the world of PHP.

Polls

What do you think about the new PHPMine Design?
Awesome
Not Bad
Sucks

PHP Gigs By City

PHP Jobs By Topic

Advertisements

PHP/html table problem?

Asked 2010-03-08 20:16:14 by ownsaflatpanneltv

I have a form that has a textarea, then the PHP file will put the text in a table, but if the user types a lot, it doesn't go down, but keeps going right. I have tried setting the tables width but that still didn't work. I want them to type a long thing but i want it to go down when it gets too long.What is a php script or html for that?

Anwered 2010-03-08 20:27:29 by Neneng_Questionaire

<textarea cols="20" rows="5" wrap="hard">
this textarea has 20 characters in width and 5 lines in height
the wrap attribute is what i think you are missing?
or is it?
hope this helps.
</textarea>

Anwered 2010-03-08 20:21:45 by Paul

Use this as a sample:

<textarea rows="11" name="response" cols="20"></textarea>

Questions and answers provided by the Yahoo Answers Community.