$caballoganador = rand(1,9);
$selectganadores3 = array();
$arrayresultados = array();
$selectGanadores ="SELECT `usuario` from `jugadacaballo` WHERE `caballo` =' $caballoganador'";
$selectGanadores1 = mysqli_query($conn, $selectGanadores);
while($selectganadores2 = mysqli_fetch_assoc($selectGanadores1)){
    $selectganadores3 = $selectganadores2['usuario'];
    array_push($arrayresultados,$selectganadores3);
}


为什么结果没有推送到数组中?我是Programming的新手,对不起我的错误。

最佳答案

$arrayresultados[]尝试

$caballoganador = rand(1,9);
$selectganadores3 = array();
$arrayresultados = array();
$selectGanadores ="SELECT `usuario` from `jugadacaballo` WHERE `caballo` ='$caballoganador'";
$selectGanadores1 = mysqli_query($conn, $selectGanadores);
 while($selectganadores2 = mysqli_fetch_assoc($selectGanadores1)){
     $arrayresultados[] = $selectganadores2['usuario'];
}

08-06 17:55