CI を実践し、ビュー内のすべてのレコードをループして、以下のように各リンクを生成します。
sitename.com/products/2
特定の製品の ID はどこに2
ありますか? リンクをクリックして製品ページでこの製品情報を取得したいのですが、特定のレコードを取得するモデルを作成するにはどうすればよいですか?
モデル:
class Db_model extends CI_Model {
public function __construct()
{
$this->load->database();
}
public function getProduct($id) {
$query = $this->db->get_where('tbl_product', array('id' => $id));
return $query->result();
}
}
コントローラ:
class Products extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('db_model');
}
public function index()
{
$data['rows'] = $this->db_model->getProduct($id);
$this->load->view('product', $data);
}
}
手伝ってくれてありがとう。