J
|
Jane 4/24/2008 |
Yuri, global $conn; $strUpdate = "update foreign_table set COLUMN='".$values["FieldName"]."' where foreign_table_Field=".$values["present_table_field"]; db_exec($strUpdate,$conn); |
B
|
bozzo author 4/24/2008 |
Yuri, I recommend you to use After record added/After record updated events for this purpose. All entered values are stored in the $values array, key values are stores in the $keys array. Here is a sample:
|