PHP-mysqli_fetch_assoc,然后将2个结果放入数组

时间:2018-12-13 16:47:51

标签: php mysql

$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的新手,对不起我的错误。

1 个答案:

答案 0 :(得分:0)

尝试使用$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']; 
}