$data = mysqli_fetch_assoc($res); //从查询的结果集里面取数据,有多少条数据就需要执行多少次。
于是,有了下面的方法。
while($data = mysqli_fetch_assoc($res)){
//只要$data有值就开始循环
}
从查询结果集里面取数据的另外两个方法
mysqli_fetch_all()
mysqli_fetch_array()
$data = mysqli_fetch_assoc($res); //从查询的结果集里面取数据,有多少条数据就需要执行多少次。
于是,有了下面的方法。
while($data = mysqli_fetch_assoc($res)){
//只要$data有值就开始循环
}
从查询结果集里面取数据的另外两个方法
mysqli_fetch_all()
mysqli_fetch_array()