我正在使用 PHP/代码点火器来显示数据。在我的表(产品)中,我有一个名为“ProductCategory”的字段。由于一个产品可以属于多个类别,并且根据我的项目要求和 XML 文件,该字段的填充如下:
编号 121
产品 代码 m34
名称 诺基亚 6800
产品类别 手机;外壳
产品主要类别 手机
排序顺序 3
/////////////////////////////////////////////////////////////////////
编号 344
产品编号32344
名称 Xbox 360 黑色
ProductCategory 控制台
ProductMainCategory 特别优惠
排序顺序 5
/////////////////////////////////////////////////////////////
编号 3433
产品代码342zxc4
名称 Iphone 5
产品类别 配件;手机4G
产品主要类别 手机
排序顺序 3
等等 .....
问题:
因为,我已经用分号 (;) 将产品分为两个类别,所以拆分了分号产品类别';' 值分为两类,并在 url 中传递它们以根据“ProductCategory”和“ProductMainCategory”显示产品。我正在使用查询字符串 /uri 段来显示我的产品。
<?
$id2=urldecode($this->uri->segment(3)); // gets values like Handsets
$id=urldecode($this->uri->segment(4)); // gets values like Mobiles
$this->db->like('ProductCategory',$id);
$this->db->or_like('ProductCategory',';'.$id);
//$this->db->not_like('ProductCategory','Store 8');
//$this->db->like('ProductCategory',';'.$id);
$this->db->where('ProductMainCategory',$id2);
$this->db->order_by('sort_order','asc');
$query_data=$this->db->get('Products');
?>
基于代码和 MYSQL 数据,我如何显示我的单个产品,以便它可以单独出现在每个类别下(根据查询字符串/uri 段值),如下所示:
Handsets¬
|-Mobiles
|--- Nokia 6800
|-Casings
|---- Nokia 6800
|-Mobiles 4G
|--- Iphone 5
|-Accessories
|---- Iphone 5
Special Offers¬
|-Consoles
|---Xbox 360 Black
我已经在树结构中显示了所需的查询输出以进行澄清。您可以将其与上面的数据进行比较以进行澄清。请帮助我。谢谢