Hi
I have a form which displays anything upto 30 sentences (strings) which i retrieve from a database depending on the ID which is passed to the query, and each sentence is displayed within a text box on my web page in a while loop:
<textarea name=\"sentencetext\" id=\"sentencetext\" cols=\"1\" rows=\"1\">$sentencetext</textarea>
I need to be able to allow the user to simply make a change to any or all textareas and then click a save button. This then needs to run an update query which updates the database accordingly for each text area.
Could anyone give any simple examples on how this would be done?
Thanks in advance
K