0
基本的に、これは私がやりたいことです。どのように機能しますか?CodeIgniterのMySQLクエリにURL IDを取得する方法
public function get_product_category(){
$id = $this->uri->segment(3);
$query = $this->db->query('SELECT * FROM products where category_id = $id ');
return $query->row();
}