Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to add this query to database and I can't get it to work. Any help will be appreciated. I am trying to learn mysql I saw a website has a reservation system and I just wanted to learn how to create one.. but I get this 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 ''reservation'( service_type, passengers, sedans, s' at line 1

$query = "INSERT INTO 'example'(
                service_type,
                passengers,
                sedans,
                suv,
                limo,
                pass_name,
                pass_phone,
                pass_email,
                book_name,
                book_phone,
                pickup_type,
                pickup_point,
                pickup_airline,
                pickup_flightno,
                pick_airportlocation,
                pick_address,
                reservation_datetime,
                drop_type,
                drop_airline,
                drop_flightno,
                drop_address,
                stop_1,
                stop_2,
                stop_3,
                stop_4,
                stop_5,
                stop_6,
                stop_7,
                stop_8,
                stop_9,
                stop_10,
                additional_info,
                payment_type,
                pickup_latitude,
                pickup_longitude,
                drop_latitude,
                drop_longitude,
                created
                ) VALUES (
                '$service_type',
                '$passengers',
                '$sedans',
                '$suv',
                '$limo',
                '$pass_name',
                '$pass_phone',
                '$pass_email',
                '$book_name',
                '$book_phone',
                '$pickup_type',
                '$pickup_point',
                '$pickup_airline',
                '$pickup_flightno',
                '$pick_airportlocation',
                '$pick_address',
                '$reservation_datetime',
                '$drop_type',
                '$drop_airline',
                '$drop_flightno',
                '$drop_address',
                '$stop_1',
                '$stop_2',
                '$stop_3',
                '$stop_4',
                '$stop_5',
                '$stop_6',
                '$stop_7',
                '$stop_8',
                '$stop_9',
                '$stop_10',
                '$additional_info',
                '$payment_type',
                '$pickup_latitude',
                '$pickup_longitude',
                '$drop_latitude',
                '$drop_longitude',
                '$created')";
share|improve this question

2 Answers

up vote 2 down vote accepted

Your table name needs to be enclosed in backticks `, not single quotes ':

INSERT INTO `example`
share|improve this answer
+1 Oh yeah... :) – alex Mar 1 '11 at 1:48

If you have variables that are strings you need to quote them in the insert statement. This is a very common mistake that people do.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.