I have a table of in which all the cells have a textbox to edit cell data. Now I want to use ajax to save data to a table for each keyup event. I have each textbox named as a 2d array that contains 2 ids, 1 id for each key, that I want save in a table.
<input type="text" name="txtfield[1][2]" />
now those 1 and 2 keys are ids that I want to save each in a separate column in a table.
Is there an easy way of getting those key values or should I use some string manipulation to get those values?
Any suggestions either in javascript or php would help.