[SOLVED] Define exported records |
7/21/2013 9:44:32 AM |
PHPRunner General questions | |
G
g_parry author
I am trying to flag when a record has been exported but can't find a way of defining what records have been. |
|
![]() |
Sergey Kornilov admin 7/22/2013 |
According to PHPRunner manual you can access any field value as $data["FieldName"] CustomQuery("UPDATE permits SET printed = 'Yes' WHERE KeyColumnName=".$data["KeyColumnName"]); |
G
|
g_parry author 7/22/2013 |
According to PHPRunner manual you can access any field value as $data["FieldName"] Assuming that key column is a numeric field you can use the following code: CustomQuery("UPDATE permits SET printed = 'Yes' WHERE KeyColumnName=".$data["KeyColumnName"]);
|