Answers for "select query with where condition in 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
0

Codeigniter select where

$array = array('name' => $name, 'title' => $title, 'status' => $status);
$this->db->where($array);
// Produces: WHERE name = 'Joe' AND title = 'boss' AND status = 'active'
Posted by: Guest on August-04-2021

Code answers related to "select query with where condition in codeigniter"

Browse Popular Code Answers by Language