
Untitled
By: a guest on
Jun 3rd, 2012 | syntax:
PHP | size: 0.32 KB | hits: 17 | expires: Never
function get_shops($get_discount_type = false){
$this->db->select('shops.*');
$this->db->from('shops');
if($get_discount_type)
{
$this->db->select('insertions.discount_type');
$this->db->join('insertions', 'shops.id = insertions.shop_id');
}
$query = $this->db->get();
return $query->result_array();