HOW TO CREATE A TABLE IN MYSQL USING PHPMYADMIN

 

In this tutorial, you will learn how to create a database and table in MYSQL using PHPMYADMIN. Before beginning, you need to download and install MYSQL, PHP, APACHE SERVER and PHPMYADMIN in your system.

1. Download MYSQL and Install it. Download MYSQL.

 

2. Download PHPMYADMIN. Download PHPMYADMIN.

 

3. Open a browser and type in URL http://localhost/phpMyAdmin-4.7.5-all-languages/  

 

4. Sign in to your PHPMYADMIN: 

 5. After Sign in to your PHPMYADMIN, Click on the Databases:

To create a table in Mysql first we need to Create a Database.





6. Create a Database:

Enter your database name. Give it a name "Demo"


7. After creating a database now create a table:

Enter the name of the table and numbers of rows and click on Go. (ex. Name = "user" and Rows="4").


8. After clicking on Go, Now add details about row: 

Make sure all fields look the same as below and click on Save.


9. Table Created Successfully.

Now you can Add, Edit, Delete rows in your table.




Comments

Popular posts from this blog

HOW TO UPDATE+FETCH DATA IN PHP - CULT CODE

LOGIN/SIGNUP FORM WITH SESSION IN PHP MYSQL - CULT CODE

HOW TO FETCH DATA FROM MYSQL WITH WHERE CONDITION USING PHP - CULT CODE