hello, to make this code to copy in a second table when data is modified, only copy numeric data but the date is blank in the second table. I can help
global $ conn, $ strTableName;
$ strSQLSave = "INSERT INTO pol_ft (Date, Cod) values (";
$ strSQLSave. = $ values ["Date"]. ",";
$ strSQLSave. = $ values ["Cod"];
$ strSQLSave. = ")";
db_exec ($ strSQLSave, $ conn);
este codigo esta en "before record updated"
thanks