在我的数据库上我有一个类别,如何显示一个特定的类别只显示在我的php页面上?
RingtoneManager.setActualDefaultRingtoneUri
上面的代码显示数据库中的所有项目。
答案 0 :(得分:1)
在查询中添加where
条件以过滤您的结果
select * from products where category='books'
答案 1 :(得分:-1)
您可以通过SQL查询
来完成mysql_query("select p from products where p.categorie= somecateg");
并设置参数。
或使用if条件
<? if (?=$row['product_categ'] == "somecateg" ?>
但第一个是干净的