How to put query results into an array using PHP
PHP is a powerful programming language with a wide range of applications. When we use PHP to query the database, we usually need to put the query results into an array for subsequent operations. This article will introduce how to use PHP to put query results into an array.
1. Use the mysql_fetch_array() function to obtain query results
In PHP, we use the mysql_query() function to perform query operations. At the same time, we can use the mysql_fetch_array() function to get the data rows from the query results and return them as an array. This function accepts one parameter - the result set returned after executing the query, so we can place it in a while loop to get multiple rows. The following is the sample code:
$query = mysql_query("SELECT * FROM mytable"); $result = array(); while($row = mysql_fetch_array($query)){ $result[] = $row; }
In the above example, we first performed a query operation using the mysql_query() function and saved the result set in the variable $query. Next, we define an array called $result and use a while loop to iterate over the rows in $query. During the loop, we use the mysql_fetch_array() function to get the row data and save it to the $row variable. Next, we add $row to the $result array for subsequent use.
2. Use the mysqli_fetch_array() function to obtain query results
If you are using PHP 5 or higher, you should use the mysqli function instead of the mysql function. The mysqli function provides an improved set of functions and options for MySQL databases. When using mysqli, you can use the mysqli_query() function and mysqli_fetch_array() function to query and obtain results. The following is a sample code for using the mysqli_fetch_array() function to obtain query results:
$query = mysqli_query($connection,"SELECT * FROM mytable"); $result = array(); while($row = mysqli_fetch_array($query)){ $result[] = $row; }
In the above example, we use the mysqli_query() function to perform the query operation and save the result set in the variable $query. Next, we define an array called $result and use a while loop to iterate over the rows in $query. During the loop, we use the mysqli_fetch_array() function to get the row data and save it to the $row variable. Finally, we add $row to the $result array for subsequent use.
Summary
Putting query results into a PHP array is a very simple task. We just need to use the mysql_fetch_array() function or mysqli_fetch_array() function to access the result set and place it in a loop. Whether you're using an older or newer version of PHP, you can use these features to easily get MySQL query results and place them into an array for subsequent processing.
The above is the detailed content of How to put query results into an array using PHP. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v
