0

在这张图片中,您可以看到我的表格当前的显示方式,以及从 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();
4

1 回答 1

0

您收到语法错误,因为您在.两个字符串之间缺少 a(包含 的双引号字符串<td>和包含 的单引号字符串$)。

您不需要为您的货币符号创建一个新字符串,只需将其添加到您已经回显的字符串中:

echo "<tr>
    [...]
    <td>&pound;" . $row["ProductPrice"] . "</td>
    [...]
</tr>";
于 2018-05-12T18:24:13.703 回答