2 回答

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超6個(gè)贊
您可以使用 CLASSCATEGORY 和 SELECT CLASSCATEGORY.name AS 類別名稱 JOIN 模型中的 USER 表,然后echo $user['categoryname']
. 以下是如何在 CodeIgniter 中連接兩個(gè)表的示例
$this->db->select('USER.*, CLASSCATEGORY.name AS categoryname') ->from('users') ->join('CLASSCATEGORY', 'CLASSCATEGORY.id = USER.classcategory_id') ->get() ->result();

TA貢獻(xiàn)1835條經(jīng)驗(yàn) 獲得超7個(gè)贊
public function getallRecords($id,$product_id)
{
$this->db->select('*');
$this->db->from('products');
$this->db->where('id', $id);
$this->db->where('product_id', $product_id);
$this->db->where('show', 'no');
$this->db->where('Results !=', '0');
$this->db->order_by('added', 'DESC');
$this->db->limit(30);
$getallRecords=$this->db->get();
$resultllRecords=$getallRecords->result();
return $resultllRecords;
}
- 2 回答
- 0 關(guān)注
- 141 瀏覽
添加回答
舉報(bào)