Hi all,
I am wanting to submit lots of data via a textarea. When I say lots of data I mean submitting multiple rows into a database.
Could someone give me some advice?
Thanks, Mike
<TEXTAREA NAME="text1"> <?php while($row=mysql_fetch_array($res)) { ?> Element one: <?=$row[0]?> - Element two: <?=$row[1]?>\n <?php } ?> </TEXTAREA>
Is this what you mean? Rob
yep thats it. thanks for the solution🙂