Assuming Interest[] is the name you use
within your html form, here is one, hopefully understandable, way to do it :
$sql = "INSERT INTO interests {I1,I2,I3,I4,I5,I6,I7)
VALUES ('$Interest[0]','$Interest[1]','$Interest[2]',
'$Interest[3]','$Interest[4]','$Interest[5]',
'$Interest[6]')
WHERE interests.CID = clients.CID";
Your structure is very wrong and it's suggested you read about control-structures
and arrays in the manual. It's okay though, it takes practice to make perfect 🙂
I believe this forum interupts white space formatting but the above should still
make sense.