我试图在一个页面中执行两个查询。这些结果应该是分开的。
我的代码就像:
$artistList_sql = "CALL artistListele()";
$artistList_result = $mysqli->query($artistList_sql);
if($artistList_result->num_rows > 0){
while($sanatci = $artistList_result->fetch_assoc()){
/* bla bla */
}
}
$catList_sql = "CALL kategoriListele()";
$catList_result = $mysqli->query($catList_sql);
if ($catList_result->num_rows > 0) {
while($row = $catList_result->fetch_assoc()) {
/* bla bla */
}
}
但是,它不起作用。第一个运行完美,第二个运行无效。可能是什么问题?