db->update
db->update
How can I do an db()->update instead of insert???
$e->db()->insert( 'test', array(
'test1' => 'ciao',
'test2' => json_encode( $values['pippo']['avvisa'] )
));
This discussion has been closed.
Replies
Yes - there is an
updatemethod.That page also lists all the other methods that are available on the
Databaseclass.Allan