inteleserve
IS-IT--Management
strSQL = "insert into usertable values ('fullname', 'address', 'city', 'state', 'zip', 'zip4', 'phone')"
**above is the sql string i am using. This string writes 'fullname' 'address' etc inside my table. I need it to write "BOB SMITH", "208 Jake Street" etc inside my table from a form.
I have tried the string below.....
strSQL = "insert into usertable values ('"& fullname &'", '"& address &"', '"& city &"', '"& state &"', '"& zip &"', '"& zip4 &"', '"& phone &'"
"
...... however this method does not write anything and just inserts a blank line into my table.
Any ideas on what needs to be done here? Or does someone have a sample script from an online form that i can take a look at?
Thanks,
Ross Lund
**above is the sql string i am using. This string writes 'fullname' 'address' etc inside my table. I need it to write "BOB SMITH", "208 Jake Street" etc inside my table from a form.
I have tried the string below.....
strSQL = "insert into usertable values ('"& fullname &'", '"& address &"', '"& city &"', '"& state &"', '"& zip &"', '"& zip4 &"', '"& phone &'"
...... however this method does not write anything and just inserts a blank line into my table.
Any ideas on what needs to be done here? Or does someone have a sample script from an online form that i can take a look at?
Thanks,
Ross Lund