Put "WHERE user = $kk" at the end
Code:
INSERT INTO user2 (obj, Expr, pos, dob, comp, cnt, cert, Major, Grade, stPeri, cont2, skills, eng, fr, ge, span, other, jobT, empT) WHERE user = $kk
Though, are the parts between the ( ) values or column names?
if it is, you need to do it like this
Code:
INSERT INTO user2 VALUES ("obj", "Expr", "pos", "dob", "comp", "cnt",
"cert", "Major", "Grade", "stPeri", "cont2", "skills", "eng", "fr", "ge", "span", "other", "jobT", "empT") WHERE user = $kk
If it's not values but column names you aren't inserting any values into the table
Bookmarks