I know that this statement updates the record in the zend framework. But I want to understand the complete flow of this statement. Statement is
$request->update($data,$request->getAdapter()->quoteInto('id = ?',$this->getRequest()->getParam('selected_id'))) )
$data
is the array of records that is passed to it and $request
is the object of model. I want to know whole meaning of this statement