Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Update Query in Codeigniter Using Multiple Where Condition

public function update_row(){
		
		$update_rows = array('name' => 'rincky');
		$multipleWhere = array('id' => $ids, 'name' => $name, 'status' => 1 );

		$this->db->where($multipleWhere);		
		$this->db->update('user', $update_rows);	
		
	}	
Comment

PREVIOUS NEXT
Code Example
Php :: how to pass parameter in routes of laravel 
Php :: laravel where multiple values 
Php :: php serialize() 
Php :: how to install symfony in windows 10 
Php :: laravel migration update table column type 
Php :: laravel routes return view in web.php 
Php :: laravel call controller method from view 
Php :: PHP Parse error: syntax error, unexpected ... 
Php :: laravel db inserr 
Php :: is_unique in codeigniter form validation 
Php :: softdeletes laravel 
Php :: laravel: get last id 
Php :: laravel hasMany with join 
Php :: php new object 
Php :: wp_query post id 
Php :: reCAPTCHA v3 PHP 
Php :: using where like in laravel 8 
Php :: add custom attribute for validation errors laravel 
Php :: insert key-value pair into array php 
Php :: laravel npm run dev mix error FIX 
Php :: laravel seeding with relationships 
Php :: json encode decode 
Php :: for else laravel 
Php :: send var in header php 
Php :: remove scientific notation number format in php 
Php :: how to print string plus variable in php 
Php :: where with and and or in a laravel 
Php :: woocommerce hook after order placed 
Php :: wp reserved image size names 
Php :: laravel factory relationship one to many 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =