Good morning, gentlemen. There is a table where data, for filling this table, is taken from the MySQL database. But there is one empty field "Comments" on which you can click the mouse and enter any comment to any record. This is done using the new HTML5 feature <td id = "editable" contenteditable = "true" > </ td>. At first I wanted to save comments using JavaScript and localstorage, but I had to abandon it, because the client will work with the application on different computers. How do I save comments in the MySQL database? For clarity - http://www.devhelper.ru/parser/

1 answer 1

It is possible to send an Ajax to the server, and save there. You can use the Yahoo UI, there they had table objects and an array of table data and you can drive between the client and the server, and also sort along the way.