Here is an example of my code and an explanation what I am trying to do.
At the beginning of the code I am selecting three variables in my database. I then compare t
Try using where_in()
where_in()
$ids = array(33, 34, 45); $dbStations->where_in('id', $ids); // Produces: WHERE id IN (33, 34, 45)
This will return records that have the ID of 33, 34, 45