Hi,
I'm working on a type of "community" website where each user gets an account where they have their age, name, ICQ #, etc. stored in a users database. Anyway, I've got an edit page where they can edit various aspects of their account. I was wondering if anyone had any ideas as to how I could check which fields changed when they submitted the form and only include those fields in the update query. What I'm doing now is basically just checking each individual field to see if it changed; if it did, then I'm setting the new value to a variable name, if not, the variable gets the old value, and then I'm just updating every single field with the new variable (which is either the updated value or the value which they left alone). I have a feeling this is pretty inefficient and I can't stand that but I can't figure out a way to only update the changed values. Any help would be appreciated.
--Intaglio