![]() |
Sergey Kornilov admin 10/28/2007 |
I recommend to use AfterAdd event that accept the key column value as a parameter. |
R
|
runnerPHP2008 author 10/28/2007 |
I recommend to use AfterAdd event that accept the key column value as a parameter. function AfterAdd(&$values,&$keys,$inline) { global $conn; $sql="Update _Model Set Login =now() where Model_ID = " . $keys["Model_ID"]; db_exec($sql,$conn); }
|
![]() |
Sergey Kornilov admin 10/28/2007 |
PHPRunner adds function header for you so you only need to post the following: |