D
Don
I would like for someone to look at the code we are using.
I am trying to insert more than four items at once if
possible 11 items total. This code below works until you
add one more entry. Is it possible to have more than 4 or
5 entries at once go from Html (the web)go into MS Access?
sql="INSERT INTO Realtors (ID,FirstName,"
sql=sql & "LastName,RealPhone,EmailAddress)"
sql=sql & " VALUES "
sql=sql & "('" & ID & "',"
sql=sql & "'" & fname & "',"
sql=sql & "'" & lname & "',"
sql=sql & "'" & phonenum & "',"
sql=sql & "'" & emailaddress & "')"
I am trying to insert more than four items at once if
possible 11 items total. This code below works until you
add one more entry. Is it possible to have more than 4 or
5 entries at once go from Html (the web)go into MS Access?
sql="INSERT INTO Realtors (ID,FirstName,"
sql=sql & "LastName,RealPhone,EmailAddress)"
sql=sql & " VALUES "
sql=sql & "('" & ID & "',"
sql=sql & "'" & fname & "',"
sql=sql & "'" & lname & "',"
sql=sql & "'" & phonenum & "',"
sql=sql & "'" & emailaddress & "')"