I'am trying to create table with variable name and columns via forms here's my query
$execute = mysql_query('CREATE TABLE '.$tName.'(
'.$cName.' '.$cType.' )');
And it's creating table with name from variable $tName but it doesnt create the columns.