Mysql
 sql >> Database >  >> RDS >> Mysql

Impossibile accedere ai dati SQL al di fuori del mio ciclo while

Stai sovrascrivendo le variabili in ogni iterazione del ciclo. Salvali tutti in un array e guarda i risultati:

while($row = mysqli_fetch_object($result)) {
    $test1[] = "some text";
    $test2[] = $row->id;
    echo $row->id // Output is the id -> works
}
print_r($test1); 
print_r($test2);