我正在为第六个表单应用程序编写一个网页,我需要访问一个包含免费会议室信息的数据库/表。 SQL查询工作正常,直到(由于误解)将文件转换为.html并返回到.php,现在没有返回$ result。任何帮助或建议都非常感谢。
我正在使用Xampp和localhost / phpmyadmin在本地托管服务器和数据库。
# Checking to see if they haven't entered a day
if ($room != "") {
# SQL query for the individual days
$sql = "SELECT Period FROM freerooms WHERE Day = '" . $day . "' AND Room = '" . $room . "'";
$result = mysqli_query($conn, $sql);
# Outputting the data in a table
if (mysqli_num_rows($result) < 0) {
# Output data in each row
echo '<table border=1><tr><th><strong>Period</strong></th></tr>'; # Headings
while ($row = mysqli_fetch_assoc($result)) {
# Individual row
echo '<tr><td style="text-align:center">'; # Start of the row
echo $row["Period"]; # Content
echo '</td></tr><br>'; # Ending the row
}
echo '</table>';
} else {
echo '<strong>Room: ' . $room . ' is not free on ' . $day . '</strong>';
}
}
我希望有一个表表示当我输入有效条目(从表格)时房间空闲的时间段,但是我得到“无论我键入什么房间”在“无论我键入哪一天”都是空闲的。