I am attempting to upload my database through directadmin. It is about 5mb and I am not sure if it is creating a database, but these are the first few lines in the SQL file. Maybe you can tell me if it is creating a database or not. And if it is, how would I fix it.
<--- SQL Code --->
-- MySQL dump 9.11
--
-- Host: localhost Database: username_dbname
-- ------------------------------------------------------
-- Server version 4.0.24-standard
--
-- Table structure for table `platinum_admin`
--
DROP TABLE IF EXISTS platinum_admin;
CREATE TABLE platinum_admin (
id tinyint(4) NOT NULL auto_increment,
username char(16) NOT NULL default '',
password char(32) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM;
<--- SQL Code --->