在 table_product 中添加产品时,我有一列名为“类别”。在某些时候,我可以为任何产品拥有多个类别,这就是我以serialize
格式存储所有类别列表的原因。
我怎样才能 fetch product_name
,product_image
并product_id
从特定类别?
比如说,我有这个 URL http://www.example.com/category.php?cid=29
,所以我想显示该特定类别的所有产品。因此我在下面的命令中运行php-mysql
"Select product_id, product_name, product_image from product where category='Select name from category where cid="29"';
我越来越空了。因为,category
我的专栏product table
如下:-
a:3:{i:0;s:5:"Apple";i:1;s:6:"Iphone";i:2;s:9:"Iphone 5S";}
任何解决方案都可以解决我的问题。
请原谅我的英语不好。