I have a page that displays a list of names and titles. The list is generated from a database, and can be a couple names long to 20's.
Example
John Doe Player [Delete] [Update] (hidden field ID)
Jane Doe Mgr. [Delete] [Update] (hidden field ID)
Jack Smith Player [Delete] [Update] (hidden field ID)
The admin can currently add/delete names, but I also want to give them the ability to update either the title or name (sometimes they are spelled wrong) without having to add and delete. Right now they can just type the correct name.
My issue is I cannot figure out how to Get the text from the textfield in the row they want to update. If I had a fixed number I would know they were updating row 3 and grab that, but since it is generated from a repeat recordset I have no idea how many rows.
I am using php, so once I get that data I will pass it to and Update.php page and use the hidden id to determine what record to update. That part works, I just cannot figure out how to get the updated text???
I can post some code, but I have searched and searched and have no clue, so my code is not of much value. I figure I have to be searching on the wrong thing.
One last thing, I am trying to do this with only PHP no AJAX. I have users with very limited computer skills on old machines that I am worried might not have Java enabled.