Hello, thanks. Maybe it's best if I show a demo so it's easier to visualize:
This is actually an html randition, not the live version, but it is helpful to see how it's setup
http://www.makemyscript.com/testform.htm
If you select a row (record) your job is to change the value in the commission text field.
So, then, you would update the record in the db, through this form.
The problem is, I cannot cleanly find out how to select, let's say 4, rows (and the package variable is always the ID value in the database table) and update each row's commission field and then have them update the db.
Basically, I want the response page to somehow, cleanly loop all of the 4 selected responses and use that data (package value and commission value which I just entered) and use that to update the row in the mysql table
The problem is, it is not so easy for me to do this cleanly. Everything I attempt fails.
That's putting it simply.