国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
How to insert a record
How to update records in database from PHP script
How to delete a query from a PHP script
in conclusion
Home System Tutorial MAC How to connect PHP script to MySQL database

How to connect PHP script to MySQL database

Apr 11, 2025 am 09:46 AM

How to connect PHP script to MySQL database

In online form development, connecting PHP code with MySQL database is a common operation. User form data needs to be collected and added to the database. This article introduces two commonly used PHP and MySQL database connection methods.

PHP and MySQL database connection

To connect MySQL database to PHP, you need to install MySQL, database management tools and PHP on your computer. The two most commonly used connection methods are MySQLi and PDO.

First, we introduce the easier MySQLi to use.

First create a MySQL database, here we use TablePlus. TablePlus is a convenient database management tool that handles a variety of databases in a single interface. With its user-friendly interface, it takes only a few steps to create a database and add information. Open the application, click the database icon, and then click "New...", enter the database name and click "OK".

How to connect PHP script to MySQL database

Create a MySQL connection

Next, use mysqli_connect to connect to the database. You need a MySQL database password. To manage credentials safely and conveniently, we use Secrets to store credentials.

How to connect PHP script to MySQL database

Now we can connect to the MySQL database to PHP.

Open your commonly used PHP development tool and create a file named index.php. We use CodeRunner to write and edit code.

How to connect PHP script to MySQL database

Here is the code for extending the connection using MySQLi:

 <?php $conn = mysqli_connect(
    "<database location>",
    "<mysql> ",
    "<mysql> ",
    "Connect"
);
if (!$conn) {
    echo 'Connection Error:' . mysqli_connect_error();
}
?></mysql></mysql>

Click the Run button at the top of CodeRunner to run the code and view the results. If there is no error, the PHP script successfully establishes the MySQL database connection.

Before running the code, make sure the system has PHP installed. If not, enter "brew install php" in the terminal.

After establishing a connection, you can perform operations on the database.

Query the database, just connect to the database as before and request the required information:

 <?php $conn = mysqli_connect(
    "<database location>",
    "<mysql> ",
    "<mysql> ",
    "Connect"
);
if (!$conn) {
    echo 'Connection Error:' . mysqli_connect_error();
}
$sql = 'SELECT id FROM connect_table';
$result = mysqli_query($conn, $sql);
$connect = mysqli_fetch_all($result, MYSQLI_ASSOC);
print_r($connect);
?></mysql></mysql>

We use the SELECT statement to find the data for the desired column.

How to insert a record

Next, demonstrate a PHP to MySQL connection example that inserts information into the database.

Using INSERT INTO… VALUES syntax:

How to connect PHP script to MySQL database

The code snippet is as follows:

 <?php $conn = mysqli_connect(
    "<database location>",
    "<mysql> ",
    "<mysql> ",
    "Connect"
);
if (!$conn) {
    echo 'Connection Error:' . mysqli_connect_error();
}
$sql = 'INSERT INTO connect_table VALUES (5)';
if ($conn->query($sql) === TRUE) {
    echo "Record added!";
} else {
    echo "Error:" . $sql . "<br> " . $conn->error;
}
$conn->close();
?></mysql></mysql>

Add your own values ??and run the code.

You can save the above code snippet for later use. We use the SnippetsLab application to save code snippets. It helps organize code snippets and avoids losing code examples.

How to connect PHP script to MySQL database

How to update records in database from PHP script

To use mysqli to connect to PHP to update records in a MySQL database, you need to use the UPDATE … SET … WHERE syntax.

Specify the columns and rows to update and the value, and then run the code:

How to connect PHP script to MySQL database

The code we use is as follows:

 <?php $conn = mysqli_connect(
    "<database location>",
    "<mysql> ",
    "<mysql> ",
    "Connect"
);
if (!$conn) {
    echo 'Connection Error:' . mysqli_connect_error();
}
$sql = 'UPDATE connect_table SET id = 66';
if ($conn->query($sql) === TRUE) {
    echo "Record updated!";
} else {
    echo "Error:" . $sql . "<br> " . $conn->error;
}
$conn->close();
?></mysql></mysql>

How to delete a query from a PHP script

Next, see how to quickly delete unwanted entries in the database.

The deletion syntax in MySQLi is DELETE FROM … WHERE …, let's try it in the code.

For example, if you want to remove the value 54 from the connect_table of the Connect MySQL database, you can use the following code:

How to connect PHP script to MySQL database

The output "value has been deleted!" means that the operation is successful. We can recheck it in the TablePlus database view:

How to connect PHP script to MySQL database

As you can see, the value 54 has been deleted from the id column.

Connect using PDO

Another common way to connect a PHP project to MySQL is PDO (PHP data object). This approach is more general because it can be used with multiple SQL databases, not just MySQL, which is different from MySQLi.

You can use the following code to establish a PDO MySQL connection:

How to connect PHP script to MySQL database

The code we use is as follows:

 <?php $servername = "localhost";
$username = "<your database username>";
$password = "<your database password>";
try {
    $conn = new PDO("mysql:host=$servername;dbname=<your database name>", $username, $password);
    $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    echo "Connect to the server successfully!";
} catch (PDOException $e) {
    echo $e->getMessage();
}
?></your></your>

Once connected to the database, you can add PDO operations to your code, such as inserting, deleting, selecting, or updating.

Create a simple PHP form and submit your values ??through it to test it.

in conclusion

Now you have learned about the two most popular methods of PHP and MySQL connections – MySQLi and PDO connecting to SQL databases.

PHP-MySQL Connection is a versatile tool that helps you retrieve data from a database, update the database, and collect user data and add it to the database.

If you are just starting to connect PHP to MySQL, it is recommended to try MySQLi. Once you're more familiar with the process, you can add PDO as it can be used with other databases, not just MySQL.

When writing code, you can use the CodeRunner code editor to write and execute code, use SnippetsLab to save code snippetsLab for later use, and use TablePlus to manage the database. As for the database's login credentials, it can be securely stored in Secrets, an application for storing passwords, credit cards, and bank account information.

Another tool you can try to help you use PHP is Whisk, which previews your pages in real time – it allows you to create and adjust in real time. So if you need to create a PHP form for your project, you can use this application to complete the task.

All of these applications are available through Setapp subscription. Setapp is a productivity tool service for Mac and iOS, dedicated to clearing daily tasks from your schedule and making room for new and exciting efforts. You can experience these and more daily task tools with a free 7-day trial.

The above is the detailed content of How to connect PHP script to MySQL database. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to Delete a Page in Word (Mac & Windows) How to Delete a Page in Word (Mac & Windows) Jun 10, 2025 am 09:30 AM

As most Microsoft Word users are aware, it's common to end up with unwanted blank pages in a Word document. These typically appear at the end of the file and often get printed or included when converting to PDF. This issue can occur regardless of whe

How to Save Battery on MacBook? How to Improve It? How to Save Battery on MacBook? How to Improve It? Jun 19, 2025 am 10:15 AM

You’ve had your Mac for a few years, and you’re starting to feel the effects of your device aging—the battery doesn’t hold up as well as it used to. To avoid getting stuck with a dead Mac, you have no choice but to take your charger e

How to Delete Focus Modes on iPhone & iPad How to Delete Focus Modes on iPhone & iPad Jun 18, 2025 am 10:40 AM

The Focus Modes functionality comes with several pre-set options such as Work, Driving, Sleep, and users are also free to create custom ones for any scenario imaginable. Should you find yourself not needing a multitude of Focus modes—whether because

macOS Monterey 12.6.2 & macOS Big Sur 11.7.2 Available with Security Fixes macOS Monterey 12.6.2 & macOS Big Sur 11.7.2 Available with Security Fixes Jun 14, 2025 am 09:32 AM

Apple has made available macOS Monterey 12.6.2 and macOS Big Sur 11.7.2 for users still operating on previous-generation Mac systems. These updates are offered independently of macOS Ventura 13.1.Both macOS Monterey 12.6.2 and macOS Big Sur 11.7.2 co

How to Automatically Send Messages with Siri from iPhone Without Confirmation How to Automatically Send Messages with Siri from iPhone Without Confirmation Jun 20, 2025 am 09:40 AM

If you trust Siri to accurately transcribe your speech into text and send it as a message, you can activate a setting that lets Siri send messages automatically from your iPhone without asking for confirmation first.With the confirmation feature enab

Fix File Sharing Not Working in MacOS Ventura Fix File Sharing Not Working in MacOS Ventura Jun 11, 2025 am 09:49 AM

Some users of macOS Ventura have noticed that file sharing between a Mac running macOS Ventura and other devices like iPhones, iPads, Windows PCs, and certain NAS drives such as Synology models is not functioning properly. For many individuals, confi

Fix iCloud Errors & “Can’t Establish Secure Connection with idmsa.apple.com” on MacOS Sierra & High Sierra Fix iCloud Errors & “Can’t Establish Secure Connection with idmsa.apple.com” on MacOS Sierra & High Sierra Jun 22, 2025 am 10:06 AM

Some users of Mac computers running MacOS Sierra and MacOS High Sierra have reported issues when trying to log in to an Apple ID or iCloud via System Preferences, as well as problems accessing iCloud.com using Safari. In addition, Safari fails to loa

How to Create a Bootable macOS Ventura USB Install Drive How to Create a Bootable macOS Ventura USB Install Drive Jun 14, 2025 am 09:46 AM

Creating a bootable macOS Ventura installer can be desirable for many advanced Mac users, whether to perform clean installations, install macOS Ventura 13 onto multiple machines without having to re-download the installer, to serve as a recovery boot

See all articles