I have an array like so:
Array ( [0] => 6599 [1] => 6600 )
This array, will be much larger in a live scenario.
I need to update my database table rows which have the entry_id(s) in this array, updating just one column status, with the value open.
I had thought I could use update_batch (https://www.codeigniter.com/userguide2/database/active_record.html#update, but I couldn't get it to work.
How can I achieve this?