In the end, I get an error that says Can't create table './test/employeeTbl.frm' (errno: 150)
<?php
include("dbLogin.php");
$query="CREATE TABLE employeeTbl(
employeeID int(6) NOT NULL primary key auto_increment,
emFirstName varchar(30) NOT NULL,
emAddress varchar(50) NOT NULL,
emCity...