I have an SQL file that refers to the table. Does MYSQL use the SQL file that I uploaded to the server to create the table. Here is the code -
DROP TABLE IF EXISTS partners_admin;
CREATE TABLE partners_admin (
admin_login varchar(100) NOT NULL default '',
admin_email varchar(100) NOT NULL default '',
admin_password varchar(100) NOT NULL default '',
admin_mailamnt double NOT NULL default '0',
admin_mailheader varchar(250) NOT NULL default '',
admin_mailfooter varchar(250) NOT NULL default '',
admin_ip varchar(16) default NULL,
admin_lastLogin datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (admin_login),
KEY admin_ip (admin_ip)
) ;
--
-- Dumping data for table partners_admin
Then there is a line with "Insert Into" after the dumping data line.
Scott