


How to implement Mysql database connection, query, record set and other operations through PHP
In PHP website development, it is often necessary to operate the Mysql database. Generally speaking, it needs to go through the following steps: Mysql database link, Mysql database query, Mysql record set operation, etc. If the above operations are repeated every time, it will not only be cumbersome. , and the code redundancy is high, so I compiled some codes that use PHP to implement Mysql database operations and posted them in the form of functions. You can add other functions or integrate them into Mysql database classes according to your own needs.
Mysql database link code
function dbConnect($hostname,$username,$pass,$db_name,$pconnect = 0) { $func = empty($pconnect) ? 'mysql_connect' : 'mysql_pconnect'; if(!$connect) { $connect = @$func($hostname,$username,$pass) or die("Mysql_Error : ".mysql_error()." Mysql Error Num : ".mysql_errno().""); } @mysql_select_db($db_name, $connect) or die(" Mysql_Error : ".mysql_error()." Mysql Error Num : ".mysql_errno().""); return $connect; }
Note:
The parameters $hostname, $username, $pass, $db_name respectively represent the Mysql database server address, username, password, and The name of the connected database. Usually the hostname is localhost or 127.0.0.1. The parameter $pconnect defaults to 0, which means that the mysql_connect function is usually used to connect to the Mysql database.
Knowledge point:
The difference between mysql_connect and mysql_pconnect: After executing the current PHP program, PHP automatically closes the database connection established by mysql_connect, while mysql_pconnect returns a durable and stable database connection. It can be reused when there is the next connection request within the time, which saves the time of repeatedly connecting to the Mysql database and speeds up the access. It is suitable for situations where the amount of concurrent access is not large. If the amount of concurrent access is relatively large, it may be due to Mysql The maximum number of connections has been reached, preventing subsequent requests from being satisfied.
mysql_error function: Returns the text error message generated by the previous Mysql operation. The mysql_errno function returns the error number in the previous Mysql operation, or 0 if there is no error.
Mysql database query code
function query_error($query) { global $connect; $temp_bar = " ============================================================================= "; $result = mysql_query($query, $connect) or die("DB ERROR ".$temp_bar." Mysql_Query : ".$query." Mysql_Error : ".mysql_error()." Mysql Error Num : ".mysql_errno()."".$temp_bar); return $result; }
Note: This function is a Mysql database query function, which is equivalent to the function of the mysql_query function. If an error occurs, an error message (SQL statement) is output. In fact, in order to prevent the website from being exposed The structure of the database, when it is officially used for commercial use, is best not to output SQL execution statements.
Mysql record set operation function code (mysql_fetch_array)
function fetch_array($result,$result_type = MYSQL_ASSOC,$records = "one") { if ($records == "one") { return @mysql_fetch_array($result,$result_type); } else { for ($i=0;num_rows($result);$i++) { $info[$i] = @mysql_fetch_array($result,$result_type); } free_result($result); return $info; } }
Note: The function of this function is derived from the mysql_fetch_array function. On this basis, I added the reading of the Mysql database record set Function and returns the obtained value as an array.
Knowledge point:
The mysql_fetch_array function is an extended version of the mysql_fetch_row function. The second parameter result_type has three values: MYSQL_ASSOC, MYSQL_NUM and MYSQL_BOTH. The default value is MYSQL_BOTH. MYSQL_BOTH: Get an array containing both associative and numeric indexes. MYSQL_ASSOC: Get only the associated index (like mysql_fetch_assoc()), MYSQL_NUM: Get the numeric index (like mysql_fetch_row()).
Error information function code
function error_msg($msg, $url= "") { global $connect; if($connect) { mysql_close($connect); } switch ($url) { case "": $url = "history.go(-1)"; break; case "close": $url = "window.close()"; break; default: $url = "document.location.href = '$url'"; break; } if (!empty($msg)) { echo "<script language='javascript'>alert('$str');$url;</script>"; } else{ echo "<script language='javascript'>$url;</script>"; } exit; }
Note: The function of this function is mainly to report errors in the form of alert and perform page jumps. It is a general function. Before reporting errors or jumping, it will first Mysql The database connection is closed using the mysql_close function.
Calling instructions:
From the function code of the above Mysql database operation, we can see that the $connect variable is a global variable. First, put the above functions into a file, such as mysqlconnect .php, then declare relevant variables and assign values, and call this Mysql database connection function after the dbConnect function is declared, that is:
$hostname = "mysqlserveraddr"; $username = "yourusername"; $pass = "youruserpass"; $db_name = "yourdatabase"; $connect = dbConnect($hostname,$username,$pass,$db_name);
Through the above Mysql database connection, database query, and database record set operation function codes According to the explanation, the basic functions of Mysql database operation in PHP website development have been included. If necessary, it is feasible to change this code to the Mysql database class or use PHP to add other Mysql database operation functions. For more related recommendations, please Follow php Chinese website.
Related recommendations:
How to use database methods to save session
Five ways to prevent SQL injection
The above is the detailed content of How to implement Mysql database connection, query, record set and other operations through 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

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.

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.

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.

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.

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.

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.

In MySQL, the function of foreign keys is to establish the relationship between tables and ensure the consistency and integrity of the data. Foreign keys maintain the effectiveness of data through reference integrity checks and cascading operations. Pay attention to performance optimization and avoid common errors when using them.

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