


Use mysql_fetch_array() to obtain information in the array result set (PHP method 4 for operating MySQL database)
How PHP operates the MySQL database - use the mysql_fetch_array() function to obtain information in the array result set
The mysql_fetch_array() function obtains a row from the result set as an association Array, or numeric array, or both Returns an array based on the rows taken from the result set, or false if there are no more rows.
In the previous article "Using the mysql_query() function to execute SQL statements (PHP method three for operating MySQL database)", the mysql_query() function is introduced to execute SQL statements. Next, use The mysql_fetch_array() function fetches information from the result set.
Related mysql video tutorial recommendations: "mysql tutorial"
mysql_fetch_array() The syntax structure of the function is as follows:
1 |
|
result: resource Type parameter, what is passed in is the data pointer returned by the mysql_query() function.
result_type: optional, integer parameter, to be passed in are 3 index types: MYSQL_ASSOC (associative index), MYSQL_NUM (numeric index), MYSQL_BOTH (array containing both associative and numeric indexes), default value for MYSQL_BOTH.
Note:
The field names returned by the mysql_fetch_array() function are case-sensitive. This is the most easily overlooked issue for beginners.
The following example implements a retrieval function. First, use the mysql_query() function to execute SQL statements and query information, then use the mysql_fetch_array() function to obtain the query results, and finally use echo data to output the array result set.
The specific development steps are as follows:
1. Create a PHP dynamic page, name it index.php, add a form, a text box and a submit button to index.php. The specific code is as follows :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
2. Connect to the MySQL database server, select the database php_cn, and set the encoding format of the database to GB2312. The specific code is as follows:
1 2 3 4 5 6 |
|
3. Use the if conditional statement to determine whether the user clicks the "Query" button. If so, use the POST method to accept the passed information, and use the mysql_query() function to execute the SQL statement. The query The statement is mainly used to implement fuzzy query of information, and the query result is assigned to the variable $sql. Then use the mysql_fetch_array() function to obtain information from the array result set. The specific code is as follows:
1 2 3 4 5 6 7 8 9 10 |
|
Note:
The above example When querying blurred vision, the wildcard character "%" is used. "%" means zero or any more characters!
4. Use the if conditional statement to judge the result set variable $info. If the value is false, then use the echo statement to output that the retrieved information does not exist. The specific code is as follows:
1 2 3 4 5 |
|
5. Use the do...while loop statement to output the information in the array result set $info[] in tabular form. The name of a field is the index. Use the echo statement to output the information in the array $info[]. The specific code is as follows :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
The output results are as follows:
We will introduce the use of the mysql_fetch_array() function here. In the next section, we will introduce the array results. Get a row in the result set as an object. For details, please read "Use the mysql_fetch_object() function to get a row in the result set as an object (Method 5 of PHP operating MySQL database)"!
The above is the detailed content of Use mysql_fetch_array() to obtain information in the array result set (PHP method 4 for operating MySQL database). 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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











Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

MySQL and phpMyAdmin are powerful database management tools. 1) MySQL is used to create databases and tables, and to execute DML and SQL queries. 2) phpMyAdmin provides an intuitive interface for database management, table structure management, data operations and user permission management.

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

When developing an e-commerce website using Thelia, I encountered a tricky problem: MySQL mode is not set properly, causing some features to not function properly. After some exploration, I found a module called TheliaMySQLModesChecker, which is able to automatically fix the MySQL pattern required by Thelia, completely solving my troubles.

IIS and PHP are compatible and are implemented through FastCGI. 1.IIS forwards the .php file request to the FastCGI module through the configuration file. 2. The FastCGI module starts the PHP process to process requests to improve performance and stability. 3. In actual applications, you need to pay attention to configuration details, error debugging and performance optimization.

Safely handle functions and regular expressions in JSON In front-end development, JavaScript is often required...
