Answers for "select and update query using codeigniter"

PHP
0

update query in codeigniter using where condition

public function update_row(){
		
		$update_rows = array('field-name' => 'field-data',);
		$this->db->where('id', 1 );
		$this->db->update('table-name', $update_rows);	

	}
Posted by: Guest on July-15-2020

Code answers related to "select and update query using codeigniter"

Browse Popular Code Answers by Language