Hi , i use audit trail of phprunner which is great .
now i have that insert sql to insert values to one other table after record updated :
global $conn;
global $data;
$strSQLInsert = "insert into formshistory (ITEM) values ('".$values["ITEM"]."')";
db_exec($strSQLInsert,$conn);
Return true;
which is also working fine .
BUT audit table "forms_audit" does not record that insert sql .
can someone help me and add also that with same format as it is been used by audit script ?
thanks in advance