How to store array in database in PHP
In PHP programming, arrays are a very commonly used data structure. Data can be conveniently stored and managed through arrays. Storing arrays into the database is also a common operation in daily applications. This article will introduce how to store arrays in the database in PHP.
- Connect to the database
Before storing the array, you need to use PHP to connect to the database. Through PHP's mysqli or PDO extension, the connection with databases such as MySQL can be achieved.
First, you need to configure the database connection information in PHP, including host address, user name, password, database name, etc.;
Then, you can use the mysqli_connect() or PDO connect() method , link to the target database.
For example:
//Use mysqli_connect() to connect to the database
$servername = "localhost";
$username = "root";
$password = "123456 ";
$dbname = "test";
$conn = mysqli_connect($servername, $username, $password, $dbname);
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
//Use PDO to connect to the database
$dsn = 'mysql:dbname=test;host=localhost';
$user = 'root';
$password = '123456';
try {
$dbh = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
echo 'Connection failed: ' . $e->getMessage();
}
- Create data table
Next, in the target database, you need to first create a data table to store the array. You can use the MySQL command line or visualization tools to create a table containing the data that needs to be stored.
For example: Suppose you need to store an array of student information, including student ID, name and age, you can create the following data table:
CREATE TABLE students
(
id
int(10) unsigned NOT NULL AUTO_INCREMENT,
name
varchar(20) NOT NULL DEFAULT '',
age
int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- Storage array
Next, you can insert the PHP array data into the data table. You can use the MySQL INSERT command or the function provided by PHP to perform the insert operation to insert the array into the target data table.
For example: to insert an array containing three student information into the above data table, you can use the following code:
//An array containing three student information
$ students = array(
array('name' => 'Zhang San', 'age' => 18),
array('name' => '李思', 'age' => ; 19),
array('name' => '王五', 'age' => 20)
);
//Loop through the array and add each student's information Insert into data table
foreach ($students as $student) {
$name = $student['name'];
$age = $student['age'];
/ /Use mysqli to implement
$sql = "INSERT INTO students (name, age) VALUES ('$name', $age)";
if (mysqli_query($conn, $sql)) {
echo "New record created successfully";
} else {
echo "Error: " . $sql . "<br>" . mysqli_error($conn);
}
//Use PDO to implement
$stmt = $dbh->prepare("INSERT INTO students (name, age) VALUES (: name, :age)");
$stmt->bindParam(':name', $name);
$stmt->bindParam(':age', $age);
$ stmt->execute();
}
- Query data
After storing the array in the database, you can also query the data through the MySQL command line or PHP code data in the table. You can use the SELECT command or the query operation function provided by PHP to query the data table.
For example: to query all student information contained in the data table, you can use the following code:
//Use mysqli to implement
$sql = "SELECT * FROM students";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
while($row = mysqli_fetch_assoc($result)) {
echo "id: " . $row["id"]. " - Name: " . $row["name"]. " - Age: " . $row["age"]. "<br>";
}
} else {
echo "0 results";
}
//Use PDO to implement
$stmt = $dbh->prepare("SELECT * FROM students") ;
$stmt->execute();
$res = $stmt->fetchAll();
if (count($res) > 0) {
foreach ($res as $row) {
echo "id: " . $row['id'] . " - Name: " . $row['name'] . " - Age: " . $row['age'] . "<br>";
}
} else {
echo "0 results";
}
Summary
In PHP programming, Storing an array into a database is a very common operation. The array can be inserted into the target data table through the MySQL INSERT command or the function provided by PHP to perform the insert operation. At the same time, you can also query the data table through the SELECT command of MySQL or the query operation function provided by PHP. This method makes it easy to store and manage data, and is also an inevitable operation in daily work.
The above is the detailed content of How to store array in database in 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
