i want the user_id, to be copied to each record. If user 1 selects options a,b,c then table 1 will have
001,username,address
table 2 will get
001,option_a
001,option_b
001,option_c
if user 2 selects b,d,e,f table 1 will get..
002,username,address
table 2 will get
002,option_b
002,option_d
002,option_e
002,option_f
I got it to do just 1, but I couldn't find any help on getting it to do more! I can't get it to do more than 1 mysql_insert_id becuase table 2 has a unique primary key which auto_increments as well!