People, I already give up.
Show an example of creating a table in mysql (); Rummaged through the forums and created
$Link = @mysqli_connect($db_host, $db_username, $db_password); mysqli_select_db($Link, $db_databases) or die(mysql_error()); mysql_query("CREATE TABLE `testdb`.`tests` (`id` INT NOT NULL ,`test` VARCHAR( 100 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL , PRIMARY KEY ( `id` )); ") Or die(mysql_error());
Got an error
CREATE command denied to user ''@'localhost' for table 'tests'.