gpt4 book ai didi

php - 如何在索引上仅显示 1 行

转载 作者:行者123 更新时间:2023-11-29 11:37:38 25 4
gpt4 key购买 nike

我正在使用 Arduino、ESP8266 将数据传感器发送到本地主机。参见下图,我不知道要在index.php中仅在1行上显示1个最新数据,就像图像中红色的矩形一样。

enter image description here

<?php

include("dbcon.php");

$link=$cn;
$i=0;
$result=mysqli_query($link,"SELECT * FROM `node` where 1");

?>

<html>
<head>
<title>Sensor Data1</title>
<meta http-equiv="refresh" content="30">
</head>
<body>
<Center><h1>Sensor Readings</h1>

<table border="1" cellspacing="1" cellpadding="1">
<tr>
<td>&nbsp;No&nbsp;</td>
<td>&nbsp;Waktu / Tarikh&nbsp;</td>
<td>&nbsp;Temperature &nbsp;</td>
<td>&nbsp;Humidity &nbsp;</td>
<td>&nbsp;Length(CM)&nbsp;</td>
<td>&nbsp;Node&nbsp;</td>
</tr>


<?php
while($row = mysqli_fetch_array($result)) {
printf("<tr><td> &nbsp;%d </td><td> &nbsp;%s&nbsp; </td><td> &nbsp;%s&nbsp; </td><td> &nbsp;%s&nbsp; </td><td> &nbsp;%s&nbsp; </td><td> &nbsp;%s&nbsp; </td></tr>",
++$i, $row["tarikh"], $row["temperature"], $row["humidity"], $row["height"], $row["node"]);
}

?>
<script type="text/javascript">
document.write ('<p>Waktu sekarang: <span id="date-time">', new Date().toLocaleString(), '<\/span>.<\/p>')
if (document.getElementById) onload = function () {
setInterval ("document.getElementById ('date-time').firstChild.data = new Date().toLocaleString()", 50)
}
</script>
</table></center>
</body>
</html>

最佳答案

从所附图像来看,您似乎希望将输出限制为单个,而不是单个。您可以使用 order bylimit 子句的组合来执行此操作:

SELECT * FROM `node` ORDER BY `waktu` DESC LIMIT 1

关于php - 如何在索引上仅显示 1 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36329726/

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