Create a Table using MySQL and PHP

The CREATE TABLE statement is using to create a table in MySQL.

The following example helps to create a table named “users”, with three columns: “FirstName”, “LastName” and “Age”:

Create a Table using MySQL
<?php

?>