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

¿Cómo obtener toda la fila del resultado en php mysql?

Como NikiC señaló, ya no debería usar las funciones mysql_, puede obtener la matriz completa tanto en PDO como en mysqli. Aquí hay un ejemplo para obtener todas las filas usando mysqli->fetch_all ¡Espero que esto ayude!

//Database Connection
$sqlConn =  new mysqli($hostname, $username, $password, $database);

//Build SQL String
$sqlString = "SELECT * FROM my_table";

//Execute the query and put data into a result
$result = $sqlConn->query($sqlString);

//Copy result into a associative array
$resultArray = $result->fetch_all(MYSQLI_ASSOC);

//Copy result into a numeric array
$resultArray = $result->fetch_all(MYSQLI_NUM);

//Copy result into both a associative and numeric array
$resultArray = $result->fetch_all(MYSQLI_BOTH);