Welcome Guest, Not a member yet? Register   Sign In
DB Query Question
#3

[eluser]danmontgomery[/eluser]
Any particular reason to try and figure out the difference between the checked tags and what's in the db?

Code:
$this->db->where('restaurant_id', $restaurant_id)->delete('tag_restaurant_rel');

$insert = array();
foreach($tags as $tag_id) {
    $insert[] = array('tag_id' => $tag_id, 'restaurant_id' => $restaurant_id);
}

$this->db->insert_batch('tag_restaurant_rel', $insert);


Messages In This Thread
DB Query Question - by El Forum - 05-07-2011, 09:43 AM
DB Query Question - by El Forum - 05-09-2011, 10:53 AM
DB Query Question - by El Forum - 05-09-2011, 12:09 PM
DB Query Question - by El Forum - 05-09-2011, 01:23 PM
DB Query Question - by El Forum - 05-09-2011, 01:39 PM
DB Query Question - by El Forum - 05-09-2011, 04:40 PM
DB Query Question - by El Forum - 05-09-2011, 04:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB