PHP – How to create a database?

3 min read
Share on:
php tutorial

In this tutorial, I’m going to teach you how to create a MySQL database for PHP. I’ll explain everything you need to create a database for your website.

Contents

  1. Server Setup
  2. Creating Database
  3. Create Tables
  4. Common Datatypes

1)  Server Setup

If you are very new to web development please follow this tutorial to setup PHP on your computer.

                PHP Tutorial 1 – setup PHP on your computer

Now, if you have done everything corrects our server will be ready to work. Next, we will open XAMPP control panel. Depending on where you have installed, you will need to look through the XAMPP directory and search for “xampp-control”.
             

XAMPP control panel settings tweak

In the control panel run Apache and MySQL by clicking start. If you are using WAMP all the steps will be same as XAMPP.

2) Creating Database
Open any web browser and In URL type “localhost/phpmyadmin”. This will lead to phpmyadmin home page.
       

  • From there click on Databases tab located on top. 
  • Now, under create database enter your database name(for example chat_db). Then click on create, leave ‘Collation’ as it’s.
    *Don’t give any space in the database name, you can use ‘_’.
how to create database using phpmyadmin

3) Create Tables

 Now on left side search for your database name. Then click on it, this will lead you to create a table.

Here we are creating a table name “user_info”, which will have 3 columns.

creating table for a database chat_db

“user_info” table will have an id, username, password column. You can see table structure in below  image,

user_info table structure

After you fill necessary information click on save.

create table add column php mysql

That’s all Congratulation you have successfully created a database in PHP – MySQL.

4) Common data types
Here are some commonly used attributes in databases. You maybe need them when creating another database.

  • Format: Column Name – Type – Length – Null Property – Other Properties
  • email – VARCHAR – 50 – not null
  • phone_no – VARCHAR  -13 – not null
  • date_of_birth – DATE – – not null
  • address – VARCHAR – 255 – not null

I would like to hear from you, tell me in comments below if you have any queries or feedback.

Anup-Das-Anuptechtips

Anup Das

I'm obsessed with python and write articles about python tutorials for Django, Data Science, and Automation.

3 thoughts on “PHP – How to create a database?”

Comments are closed.