Where can I input the where clause?

Where can I input the where clause?

misteammisteam Posts: 48Questions: 17Answers: 0

function update_data ( $db, $id) {
$db->update( 'transactions', array(
'counter' => $id
) );
}

->on( 'postCreate', function ( $editor, $id, $row ) {
update_data ( $editor->db(),$id);
})

Answers

This discussion has been closed.