Whats wrong with this MYSQL statement?
INSERT INTO store_profiles ( store_id, user_id, title, address_1, address_2, city, state, zip, phone, email, website, active, show ) VALUES ( '700580','564','Skyway Workout','123 North Johnson Drive','','Beverly Hills','CA','90210','(310) 555-1234','','','1','TRUE' )
The quote marks after the phone number are two single quotes in a row, not one double quote :)
I get the following error
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 'show ) VALUES ( '700580','564','Skyway Workout','123 North Johnson Drive','','Beverly Hil' at line 1
Heh.... "show" is the problem. Thanks guys! Can't have a field called show without backticks. SHOW is a command. Thanks for the help!