3.2.0

How i send all data in a grid to my php file

Hello

Do you have a example for how to send all data in a grid to my php file in the server, it's a small grid rows = 40 and columns = 3, i'm evaluating the ActiveWidgets, and i think its a great librery but i need how to send all the data in a grid to the server
isc Alfonso Olivares
March 19,
Where is the source of your data? In a JavaScript array? Or in a file?

The easiest thing to do is set up a form and POST the data via a button (or link or whatever).

If the data is stored internally in an array on the page, you could pass the array variable (I'm not sure if this will actually work. If not, you'll need to write some code to process the array contents for the POST method). Note that there's a limit to the amount of data the POST method supports (and the GET method supports even less!).

If, on the other hand, the data is in a file, its probably easier to just pass the filename.
Anthony
March 22,

This topic is archived.

See also:


Back to support forum