3.2.0

How to add data from grid to database using PHP.

I would like to use PHP scripting. To be able to add the AW's Grid data to a postgeSQL database. Could anybody help me?
glennlosentes [philippines-davao]
August 13,
function addRow(){
var rowData = ["GGL", "Google, Inc", "9,999.999", "765.432", "10000"]
myData.unshift(rowData);
obj.setRowProperty("count", myData.length);
obj.refresh();
}

obj.setAction("click", addRow);

manipulate mo nalng yan kabayan

julezzz[philippines-qc]
November 9,
I do not think that he wanted to add more rows to the grid. He wants to use the grid as a data container and save the data to a database.

The method will largely depend on the amount of data. One can easy read the values of the grid and assign them to a single hidden form element (rows & columns should be delimited) and save the posted data to database.
Neil Craig
November 9,

This topic is archived.

See also:


Back to support forum