I have a form that can be edited by users. When changes are made, I want only those changes to update. A member of staff has pressed "save" before the whole page has loaded meaning the script saw the form fields as being empty so replaced the fields with empty ones.
Current code is:
$res= mysql_query ("UPDATE table SET site='$site', the1='$the1' WHERE id='$id'");
Appreciate the help here.....