那么我正在创建一个网络应用程序,我需要在其中显示数据库中的所有行,代码和数据库结构是:
------------------------------------------
id | product_name | link
------------------------------------------
1 | example_1 | #
2 | example_2 | #
3 | example_3 | #
mysql_query($sql);
$sql = "SELECT * FROM `site_product` WHERE `product_cat` = 'home'";
while ($row = mysql_fetch_assoc($result)) {
echo "$row['product_name'];" }
所以然而我只得到一个结果,其余的行没有在输出中我想使用“forloop”但是dnt有任何想法来实现它..请帮忙。