In PHP programming, it is often necessary to use a database to store and manage data. In practical applications, it is often necessary to add data to the database. This article will introduce how to use PHP to implement the function of adding data to the database.
1. Connect to the database
Before using PHP to operate the database, you first need to connect to the database. You can use extension libraries such as mysqli or PDO to achieve database connection. The specific operations are as follows:
Use the mysqli extension library to connect to the database:
$mysqli = new mysqli("localhost", "username", "password", "database"); if ($mysqli->connect_errno) { die("连接失败: " . $mysqli->connect_error); }
Use the PDO extension library to connect to the database:
$dsn = "mysql:host=localhost;dbname=database"; $username = "username"; $password = "password"; try { $pdo = new PDO($dsn, $username, $password); $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } catch (PDOException $e) { die("连接失败:" . $e->getMessage()); }
2. Prepare SQL statements
After successfully connecting to the database, you need to prepare the SQL statements to be executed. SQL statements usually include keywords such as INSERT INTO and VALUES, which are used to specify the data and data tables to be added. For example:
INSERT INTO student(name, age) VALUES ('张三', 18);
In the SQL statement, you need to specify the data table to be added, the fields to be added, and the corresponding values. This information needs to be set according to actual needs.
3. Execute the SQL statement
After preparing the SQL statement, you can execute it and add the data to the database. In both mysqli and PDO extension libraries, you can use the exec function to execute SQL statements. The specific operations are as follows:
Use the mysqli extension library to execute SQL statements:
$sql = "INSERT INTO student(name, age) VALUES ('张三', 18)"; if ($mysqli->query($sql) === TRUE) { echo "数据插入成功"; } else { echo "数据插入失败: " . $mysqli->error; }
Use the PDO extension library to execute SQL statements:
$sql = "INSERT INTO student(name, age) VALUES ('张三', 18)"; try { $pdo->exec($sql); echo "数据插入成功"; } catch (PDOException $e) { echo "数据插入失败: " . $e->getMessage(); }
4. Complete sample code
// 使用mysqli扩展库连接数据库 $mysqli = new mysqli("localhost", "username", "password", "database"); if ($mysqli->connect_errno) { die("连接失败: " . $mysqli->connect_error); } // 准备要执行的SQL语句 $sql = "INSERT INTO student(name, age) VALUES ('张三', 18)"; // 执行SQL语句,并判断是否执行成功 if ($mysqli->query($sql) === TRUE) { echo "数据插入成功"; } else { echo "数据插入失败: " . $mysqli->error; } // 使用PDO扩展库连接数据库 $dsn = "mysql:host=localhost;dbname=database"; $username = "username"; $password = "password"; try { $pdo = new PDO($dsn, $username, $password); $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } catch (PDOException $e) { die("连接失败:" . $e->getMessage()); } // 准备要执行的SQL语句 $sql = "INSERT INTO student(name, age) VALUES ('张三', 18)"; // 执行SQL语句,并判断是否执行成功 try { $pdo->exec($sql); echo "数据插入成功"; } catch (PDOException $e) { echo "数据插入失败: " . $e->getMessage(); }
5. Summary
This article introduces how to use PHP to implement the function of adding data to the database, which mainly includes steps such as connecting to the database, preparing SQL statements, and executing SQL statements. Once you master this knowledge, you can easily add data to the database and implement more practical functions.
The above is the detailed content of How to use PHP to add data to the database. For more information, please follow other related articles on the PHP Chinese website!

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


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

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

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