对不起,我对php很陌生。我的代码有什么问题? 我收到解析错误:语法错误,文件中的意外结尾
<?php
require 'connect.php';
$sql = "SELECT * FROM tbdados";
$result = mysqli_query($dbc, $sql) or die ("Bad Query: $sql");
while($row = mysqli_fetch_assoc($result)) {
echo"{$row['sensor1']};
//print_r($row);
}
?>