![]() |
Sergey Kornilov admin 4/29/2010 |
You need to use AfterEdit event of MAIN table. Here is the sample code: $sql = "update DETAILS set DETINFO = '" . $values["NAME"] . "' where DETMAIN =" . $keys["MAINID"]; |
M
|
marpunta author 4/30/2010 |
Hi Sergey |
A
|
ann 4/30/2010 |
Hi, $sql = "update DETAILS set DETMAIN = '" . $values["NAME"] . "' where DETMAIN ='" . $oldvalues["NAME"]."'"; |
M
|
marpunta author 4/30/2010 |
Hi, try the following code: $sql = "update DETAILS set DETMAIN = '" . $values["NAME"] . "' where DETMAIN ='" . $oldvalues["NAME"]."'";
|