這是我的代碼:的if else循環PHP MySQL的
while($row = mysql_fetch_array($result))
{
echo '<tr>';
if($row['type'] == "product"){
echo '<td>'.$row['item'].'<br>('.$row['price'].')</td>';
}else{
echo '<td>'.$row['item'].'</td>';
}
echo '<td>'.$row['type'].'</td>';
echo '</tr>';
}
我想是時候item
type = product
那麼價格將在該項目下顯示。
例子:
Item | type
item1 product
($10.00)
item2 service
item3 product
($20.00)
什麼是你得到 –
錯誤的位置是錯誤/問題? –
輸出只會顯示所有的價格或全部沒有價格的項目... –