我需要帮助,我有 2 个表“客户”和“产品”。我想根据客户表从产品表中获取数据并将其整体显示。
productTable
productId productName productPrice
1 Abc 100
2 Bcd 200
3 Cde 300
clientTable
clientId productNameId clientName
4 2 A
5 3 B
6 1 C
我希望表格将记录显示为:
Client Name Product Name
A Bcd
B Cde
C Abc
我如何使用 MVC CI 展示它们。
模型
class Client_model extends CI_model
{
function All()
{
return $client = $this->db->get('client')->result_array();
}
}
控制器
class Client extends CI_Controller
public function index()
{
$this->load->model('Client_model');
$invoice = $this->Client_model->All();
$data = array();
$data['client'] = $client;
$this->load->view('admin/ViewClient', $data);
}
}
繁星coding