sql >> Base de Datos >  >> RDS >> Mysql

No puedo acceder a datos SQL fuera de mi ciclo while

Está sobrescribiendo las variables en cada iteración de bucle. Guárdalos todos en una matriz y mira los resultados:

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);