I don't really understand.
Doses it means that i shall have 2 tbls in my database. if i create the relationship shall i point it to tbl1 primary key and tbl2 primary key.
This is how i did mine:
userID = request.querystring("ID")
strVALS1 = request.form("txtVals1")
strVALS2 = request.form("txtVals2")
strVALS3 = request.form("txtVals3")
sql = "INSERT INTO ([col1,col2, col3, U_ID]) VALUES ('" & strVALS1 & "', '" & strVALS2 & "', '" & strVALS3 & "', userID)"
adCon.execute sql
But is still not working
In my admin area where i select the member i wish to add new records to it profile using it assign ID. That is the ID when the member get registered.
Just tell me how the 2 tbls is going to look like.
Please still help me out.