Ok, this is the error. I have syntax error in there. I'm going to go look it up and see how to fix it. I'll post it in here.
[B]Error[/B]
[B]SQL query:[/B]
CREATE TABLE IF NOT EXISTS "address_book"( "address_book_id"int( 11 ) NOT NULL ,
"customers_id"int( 11 ) NOT NULL default '0',
"entry_gender"char( 1 ) NOT NULL default '',
"entry_company"varchar( 32 ) default NULL ,
"entry_firstname"varchar( 32 ) NOT NULL default '',
"entry_lastname"varchar( 32 ) NOT NULL default '',
"entry_street_address"varchar( 64 ) NOT NULL default '',
"entry_suburb"varchar( 32 ) default NULL ,
"entry_postcode"varchar( 10 ) NOT NULL default '',
"entry_city"varchar( 32 ) NOT NULL default '',
"entry_state"varchar( 32 ) default NULL ,
"entry_country_id"int( 11 ) NOT NULL default '0',
"entry_zone_id"int( 11 ) NOT NULL default '0',
PRIMARY KEY ( "address_book_id" ) ,
KEY "idx_address_book_customers_id_zen"( "customers_id" )
) AUTO_INCREMENT =2;
[B]MySQL said: [/B][URL="http://dev.mysql.com/doc/mysql/en/error-messages-server.html"][IMG]https://birdoasis.com:2083/3rdparty/phpMyAdmin/themes/original/img/b_help.png[/IMG][/URL]
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"address_book" (
"address_book_id" int(11) NOT NULL,
"customers_id" int(11' at line 1