when iam trying to add data to the database i get this error
Microsoft JET Database Engine (0x80040E14)
Syntax error in INSERT INTO statement.
/science/add.sign.asp, line 14
here is the add.sign.asp
<!--#include file="connection.asp" -->
<%
adddate=now()
name=request.form("name")
email=request.form("email")
ranking=request.form("ranking")
notes=request.form("notes")
if name="" or ranking="" or notes="" then
response.write"الرجاء ادخال جميع الحقول المطلوبة"
else
addSQL="insert into guestbook (date,name,email,ranking,content) values('"&adddate&"','"&name&"','"&email&"','"&ranking&"','"¬es&"') "
SB.execute(addSQL)
response.redirect "guest.book.asp"
End if
SB.close
Set SB=Nothing
%>
is there something wrong in this code .. ??