karolmcauley
10-02-2002, 03:02 PM
Is it possible to store cookie values in a database field (Access) via an insert query?
For example, if i have set a cookie called username:
response.cookie("surname") = "username"
could i store that username value into a db, like:
INSERT INTO prediction (username,score,match,created_date)VALUES('" & username & "', '" & score & "', '" & match & "', '" & now() & "')"
If it is possible is the syntax right?
ManyThx in advance
For example, if i have set a cookie called username:
response.cookie("surname") = "username"
could i store that username value into a db, like:
INSERT INTO prediction (username,score,match,created_date)VALUES('" & username & "', '" & score & "', '" & match & "', '" & now() & "')"
If it is possible is the syntax right?
ManyThx in advance