|
Spooky -> RE: INSERT-problem (9/27/2005 20:55:57)
|
Ideally you would just track the userid, but otherwise, assign the values to a variable eg : Response.Write "Good Night"
End If%>
<%firstname = FP_FieldVal(fp_rs,"firstname")%>
<%lastname = FP_FieldVal(fp_rs,"lastname")%>
<%=FP_FieldVal(fp_rs,"firstname")%>,</b></font> Then add another DRW below this one, and just use insert code you have above (with the following changes)
INSERT INTO surf (lastname, firstname, [date], [time])
VALUES ('"&LastName&"','"&firstname&"', date(), time())
|
|
|
|