editable textarea

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
jbatty
Forum Commoner
Posts: 35
Joined: Tue Sep 23, 2003 2:42 pm

editable textarea

Post by jbatty »

I am generating a set of sub-arrays from a main array. When php generates the sub arrays, it sends the result straight to a browser page (which is uneditable).
However, I want to send the result to a editable textarea or something else that would enable me to move items around.

Could anyone kindly suggest a way to do this please please?
User avatar
twigletmac
Her Royal Site Adminness
Posts: 5371
Joined: Tue Apr 23, 2002 2:21 am
Location: Essex, UK

Post by twigletmac »

Without a bit more detail on what your output is and what exactly you want to do the best I can offer is to stick some form tags around the output and textarea tags around the information you want to edit.

Then you can submit the form back to PHP to allow further manipulation.

Mac
jbatty
Forum Commoner
Posts: 35
Joined: Tue Sep 23, 2003 2:42 pm

Post by jbatty »

that is a good start. thank you
Post Reply