非常新的 PHP 请忍受。
正如您从我的代码片段中看到的那样,我只是在一行下显示产品信息,然后使用 while 重复循环。然后,这显然将我的相关数据显示在一列中,一个列下。
while ($row = mysqli_fetch_row($result)){
echo "<img src=\"images/album1.jpg\"/><br>"; //this will eventually show the product image
echo "<a href=\"product.php?id=$row[0]\">$row[1] </a><br>"; //this shows the product name
echo "<strong>£$row[2]</strong><br>"; //this shows the product price
}
我将如何创建网格视图,例如使用列来显示我的数据?我认为这将是某种要添加的循环,并且可能使用表格来显示我的数据?
任何帮助是极大的赞赏。