जैसा कि NikiC ने बताया कि आपको अब mysql_ फ़ंक्शन का उपयोग नहीं करना चाहिए, आप PDO और mysqli दोनों में संपूर्ण सरणी प्राप्त कर सकते हैं, यहां mysqli->fetch_all समारोह, आशा है कि यह मदद करता है!
//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);