I have data view and a grid . I use Drag and drop from DataView to Grid. I want to save all Grid's rows at once with php scripts, but i don't know how to send grids.store to PHP and how to iterate it to insert row by row to mysql. Please HELP .
If your store's proxy has a properly configured writer you can do a store.sync() to send data to the server.
About the PHP part, it depends on many things like your level of experience with it (you might want to begin here), are you using a server-side application framework (like Kohana or CodeIgniter), etc...
Simplest theoretical build-from-scratch approach would be to define an ajax proxy for your store, call store.sync() when you want to upload your records, and then on the server-side decode your $_POST variable and decide what to do with its content.
I have Json.store to load data for DataView store. Then i create empty data store for the grid.
With Drag And Drop from DataView I add rows to Grid . Then i want to save all records from Grid to mysql table. I just want to know how to send params Grid.Store to php script and how _POST['store'] to be parsed in PHP ?