在这张图片中,您可以看到我的表格当前的显示方式,以及从 mysql 数据库中收集的商品价格,并显示为“500”或我希望它显示“500 英镑”的商品有多少尝试了数字格式,我尝试过使用和不使用语言环境,但仍然得到相同的错误 目前使用 $ 只是为了测试 *
谢谢你的帮助 !:D
include 'db_connection.php';
$conn = OpenCon();
echo "Connected Successfully";
setlocale(LC_MONETARY, 'en_US');
$sql = "SELECT * FROM Product, Manufacturer Where Product_ID = Manufacturer_ID";
$result = $conn->query($sql);
if ($result->num_rows > 0){
echo "<table>
<tr>
<th>Product ID</th>
<th>Name</th>
<th>Product Description</th>
<th>Price</th>
<th>Image</th>
<th>Manufacturer Name</th>
</tr>";
while($row = $result->fetch_assoc()){
echo "<tr>
<td>".$row["Product_ID"]."</td>
<td>".$row["Name"]."</td>
<td>".$row["Product_Description"]."</td>
<td>" '$'.number_format(floatval($row["ProductPrice"]));."</td>
<td><img src='images/".$row['ProductImage']."'></td>
<td>".$row["ManufacturerName"]."</td>
</tr>";
}
echo "</table>";
} else {
echo "0 results";
}
$conn->close();