Jak zauważył NikiC, nie powinieneś już używać funkcji mysql_, możesz pobrać całą tablicę zarówno w PDO, jak i mysqli. Oto przykład pobierania wszystkich wierszy przy użyciu mysqli->pobierz_wszystko funkcja, mam nadzieję, że to pomoże!
//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);