I try to describe my complete situation...
I read a csv file using php function. I developed a php class that represent an entry of the file. So, I have a php array that contains all my entries. When I read all entries of the file, I use a php function to visualize these into a table. For the table I use jQuery tableSorter.
Now, the user can edit some rows of this table (for this I wrote some javascript functions). At this point I need to save (on the csv file) every modified table rows. Is there a simple way to make this?
Need I to modify the php array? Is possibile to modify a php variable by javascript code? Sorry but I'm new about this.
Practical examples are welcome.