
, could anyone pliz help??
I am having a problem commitig records to an Access db with ASP.
On running the query I get the following error:
Microsoft VBScript compilation (0x800A03EA)
Syntax error
I dont see where I am going wrong.
here is my insert statement:
sql_insert = "INSERT INTO Users(first_name, last_name, address, line2, city, country, postcode, phone, mobile, email, wifi_laptop, desktop, laptop, Pda, OS, terms_of_use) VALUES ('"&
first_name &"', '"& last_name &"', '"& address &"', '"& line2 &"', '"& city &"', '"& country &"', '"& postcode &"', '"& phone &"', '"& mobile &"', '"& email &"', '"& wifi_laptop &"', '"& desktop &"', '" & laptop &"', '"& Pda &"', '"& OS &"', '"& terms_of_use &"')"
('.')