gpt4 book ai didi

php mysql 在 html 页面上打印值的问题

转载 作者:行者123 更新时间:2023-11-29 18:49:13 26 4
gpt4 key购买 nike

我正在尝试使用 PHP 查询 MySQL DB 并在页面上打印单个结果。

它总是一个结果,所以我不确定是否需要循环

无论如何,有人介意建议为什么下面的方法不起作用吗?

谢谢!!

    // Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
else {
echo "success";
}

$sql = "SELECT sum(Discounted_Value) as id FROM Orders WHERE Year = 2017";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo "Total 2017 " $row["id"]. "<br>";
}
} else {
echo "0 results";
}
$conn->close();

最佳答案

如果只有一个结果,您可以将代码简化为:

$sql = "SELECT sum(Discounted_Value) as id FROM Orders WHERE Year = 2017";
$result = $conn->query($sql);
$row = $result->fetch_assoc();
echo "Total 2017 " . $row["id"] . "<br>"; // Don't forget dots for concatenation

关于php mysql 在 html 页面上打印值的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44444750/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com