PhpMyAdmin is web base software used for creating and maintaining MySQL databases. This tutorial is designed to get you starting with the basics of phpMyAdmin. Select the phpMyAdmin from the wampserver menu as shown below.
$sql = "CREATE TABLE `_apachenet_`.`members` (`id` INT(255) NOT NULL, `firstname` VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `lastname` VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `email` VARCHAR(126) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, PRIMARY KEY (`id`)) ENGINE = MyISAM CHARACTER SET utf8 COLLATE utf8_bin;";
Click on export tab and generate the SQL table.