I am using select like this and it is fetching record successfully:
$table = new Bugs(); $select = $table->select(); $select->where('bug_status = ?', 'NEW'); $rows = $table->fetchAll($select);
But Now I want to update same record. For example in simple MySQL.
UPDATE TableName Set id='2' WHERE id='1';
How to execute above query in Zend ?
Thanks
$data = array( 'field1' => 'value1', 'field2' => 'value2' ); $where = $table->getAdapter()->quoteInto('id = ?', $id) $table = new Table(); $table->update($data, $where);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With