PHP Create a MySQL Database

There may be more than one table in a database.

If you want to create or delete a MySQL database, you will need to CREATE privileges.

Build a MySQL database. Using MySQLi and PDO

In MySQL, you use the CREATE DATABASE statement to make a database.

The examples below show how to make a database called \”Student\”:

Example (MySQLi Object-oriented)

<?php
$servername = \”localhost\”;
$username = \”root\”;
$password = \”12345\”;

// Connection Create
$link = new mysqli($servername, $username, $password);
// Connection Check
if ($link->connect_error) {
die(\”Connection failed: \” . $link->connect_error);
}

// Create database
$sql = \”CREATE DATABASE Student\”;
if ($link->query($sql) === TRUE) {
echo \”Database created successfully\”;
} else {
echo \”Error creating in database: \” . $link->error;
}

$link->close();
?>

Example (MySQLi Procedural)

<?php
$servername = \”localhost\”;
$username = \”root\”;
$password = \”12345\”;

// Create connection
$link = mysqli_connect($servername, $username, $password);
// Check connection
if (!$link) {
die(\”Connection failed: \” . mysqli_connect_error());
}

// Create database
$sql = \”CREATE DATABASE Student\”;
if (mysqli_query($link, $sql)) {
echo \”Database created successfully\”;
} else {
echo \”Error creating in database: \” . mysqli_error($link);
}

mysqli_close($link);
?>

Example (PDO)

<?php
$servername = \”localhost\”;
$username = \”root\”;
$password = \”12345\”;

try {
$link = new PDO(\”mysql:host=$servername\”, $username, $password);
// set PDO error mode to exception
$link->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$sql = \”CREATE DATABASE  Student\”;
// use exec() because no results returned
$link->exec($sql);
echo \”Database created successfully<br>\”;
} catch(PDOException $e) {
echo $sql . \”<br>\” . $e->getMessage();
}

$link = null;
?>

Related Article
50+ PHP Interview Questions and Answers 2023

1. Differentiate between static and dynamic websites. Static Website The content cannot be modified after the script is executed The Read more

All We Need to Know About PHP Ecommerce Development

  Many e-commerce sites let you search for products, show them off, and sell them online. The flood of money Read more

PHP Custom Web Development: How It Can Be Used, What Its Pros and Cons Are,

PHP is a scripting language that runs on the server. It uses server resources to process outputs. It is a Read more

PHP Tutorial

PHP Tutorial – Complete Guide for Beginners to Advanced Welcome to the most comprehensive PHP tutorial available online at PHPOnline.in Read more

Introduction of PHP

Introduction to PHP – Learn PHP from Scratch with Practical Examples Welcome to your complete beginner's guide to PHP. Whether Read more

Syntax Overview of PHP

Syntax Overview of PHP (2025 Edition) Welcome to phponline.in, your one-stop platform for mastering PHP. This comprehensive, SEO-rich tutorial on Read more

Environment Setup in PHP

Setting Up PHP Environment (Beginner’s Guide) If you’re planning to learn PHP or start developing websites using PHP, the first Read more

Variable Types in PHP

PHP Variable Types: Complete Beginner's Guide to PHP Data Types Welcome to phponline.in, your trusted source for beginner-to-advanced level PHP Read more