Connecting to a MySQL database with PHP is an essential skill for building dynamic web applications. Let’s break it down step-by-step, so you can understand how to establish a connection and interact with your database seamlessly.
Before we dive into coding, ensure you have the following set up:
You can set this up locally using software like XAMPP or MAMP, which packages everything you need.
For our examples, let’s create a simple database named test_db
with a table called users
. You can run the following SQL commands in your MySQL client:
CREATE DATABASE test_db;
USE test_db;
CREATE TABLE users (
id INT(11) AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
email VARCHAR(100) NOT NULL
);
Now, let’s write some PHP code to connect to our new database. Create a file named db_connect.php
and add the following code:
<?php
// Database configuration
$host = 'localhost';
$username = 'your_username'; // replace with your MySQL username
$password = 'your_password'; // replace with your MySQL password
$dbname = 'test_db';
// Create connection
\(conn = new mysqli(\)host, \(username, \)password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
?>
Save the db_connect.php
file and run it in your browser (e.g., http://localhost/db_connect.php
). If everything is set up correctly, you should see the message: Connected successfully
. If you see an error message, double-check your database credentials.
Now that we’re connected, let’s insert a new user into the users
table. Update your db_connect.php
file with the following code:
// Insert a new user
$sql = "INSERT INTO users (name, email) VALUES ('John Doe', 'john@example.com')";
if (\(conn->query(\)sql) === TRUE) {
echo "New record created successfully";
} else {
echo "Error: " . \(sql . "<br>" . \)conn->error;
}
// Close the connection
$conn->close();
?>
Congratulations! You’ve successfully connected to a MySQL database using PHP and executed a simple database operation. This foundational knowledge will help you as you continue to build dynamic web applications. Keep experimenting with different queries and database operations to enhance your skills!