我正在尝试在href中使用if条件。我的问题是为什么它只读取数据库的第一行。我也尝试过使用。这是我的代码...
<?php
include 'dbconfig/config.php';
$select = "SELECT * FROM schedule_tbl";
$select_result = mysqli_query($con, $select);
if(mysqli_num_rows($select_result)> 0) {
$row = mysqli_fetch_assoc($select_result);
if($row['status'] == "close") { ?>
<li><a href="sorry.php">Enroll Now Here!</a></li>
<?php } else { ?>
<li><a href="enrollment.php">Enroll Now Here!</a></li>
<?php }
}
?>
schedule.tbl
使用while
循环...
答案 0 :(得分:0)
尝试使用
if(mysqli_num_rows($select_result)> 0)
{
while($row = mysqli_fetch_array($select_result))
{
if($row['status'] == "close")
{
//
}
else
{
//
}
}
}