我要实现在用PHP代码+mysql把这一行显示到前台

2024年11月17日 10:30
有4个网友回答
网友(1):

where 子句改为:where product_id=12 ORDER BY product_id
当然这也取决于你数据库设计时product_id是不是允许重复。
或者:sql语句可以加上limit
select * from ".$db_web_product." where type_id=2 ORDER BY product_id limit 0,1
需要几条就把1改成几

网友(2):

where 子句改为:where product_id=12 ORDER BY product_id
当然这也取决于你数据库设计时product_id是不是允许重复。

网友(3):

不知道你到底什么意思,你既然已经从数据库里面取出了所有的东西,那么你就在你的foreach里面把他们都遍历出来就是了啊。你现在只让他输出了$row['product_name'] 那肯定只有一个啊

网友(4):

你使用表格标签就可以了