亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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)

Can I Show the Dock on All Screens on Mac? Using Dock on Different Displays in macOS Can I Show the Dock on All Screens on Mac? Using Dock on Different Displays in macOS Jul 03, 2025 am 09:30 AM

If you're using a Mac with multiple monitors, you might be curious about how to display the Dock on all screens or whether it's possible to add a Dock to secondary displays.The good news is that you can configure the Dock to appear on any screen conn

How to Play Fortnite on Mac with FnMacAssistant & Sideloadly How to Play Fortnite on Mac with FnMacAssistant & Sideloadly Jul 05, 2025 am 09:21 AM

Fortnite is once again available for iPhone and iPad users, bringing joy to many gamers. However, there's still no official version for Mac (at least not yet). Despite that, Apple Silicon Mac owners aren’t completely out of luck—you can run the iOS/i

How to Remove Old Devices from Apple ID on Mac How to Remove Old Devices from Apple ID on Mac Jul 07, 2025 am 09:08 AM

If you've owned multiple Apple devices over the years, you might find yourself in a situation where some of those older Macs, iPhones, iPads, or other Apple hardware have been sold, given away, or traded. No matter how they left your possession, it's

How to Enable iCloud Private Relay on Mac How to Enable iCloud Private Relay on Mac Jul 05, 2025 am 09:36 AM

iCloud Private Relay is an excellent privacy feature included with the iCloud subscription, designed to safeguard your online activity and browsing by masking your IP address (using a temporary one) and encrypting DNS lookups. This prevents third pa

How to Make MacOS Sequoia Feel Faster: Tips to Speed Up Slow MacOS How to Make MacOS Sequoia Feel Faster: Tips to Speed Up Slow MacOS Jul 05, 2025 am 09:28 AM

macOS Sequoia is a solid operating system that brings some impressive features like iPhone Mirroring, and while performance is excellent for many users, not everyone experiences the same level of speed. If you're finding macOS Sequoia slower than pre

How to See All Links Shared in Messages on iPhone & iPad How to See All Links Shared in Messages on iPhone & iPad Jul 05, 2025 am 09:31 AM

If you frequently use iMessage, then you've likely shared numerous web links in your chats — maybe an article, a video, a tweet, a song, or anything else. Locating these links later can be quite frustrating, but thankfully there's a simpler method th

How to Allow Apps During Downtime on Mac How to Allow Apps During Downtime on Mac Jul 04, 2025 am 09:03 AM

Are you using Screen Time to manage your or your child’s Mac usage? If yes, you likely already know that it allows you to set app limits, schedule downtime on the Mac, and more. Additionally, you can also choose specific apps that remain accessible a

Create a MacOS Tahoe 26 Beta VM with Three Commands in Terminal Using tart Create a MacOS Tahoe 26 Beta VM with Three Commands in Terminal Using tart Jul 06, 2025 am 09:28 AM

Advanced Mac users familiar with the command line can swiftly set up a MacOS Tahoe 26 beta virtual machine by entering a few commands into Terminal, using tart. Tart is a command-line utility for managing virtual machines and offers one of the quicke

See all articles