Skip to content
Advertisement

How to update multiple or single row in single query using where multiple or single id using codeigniter?

I want to update multiple or single row in database in one query where multiple ids or single id post from the form. I couldn’t find it works in update batch. I don’t know how to do it. I have already searched on google on how to make it but I have no luck. Your answer is very much appreciated.

Html and AJAX

JavaScript

Controller Code

JavaScript

Error

JavaScript

Advertisement

Answer

In CI docs you can read

the third parameter is the where key.

and below see the resulting query example. From that its’t obviouse that each sub-array should contain a corresponding value for that key.

So, in your case, you need to put the id value to each sub-array.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement