Is there some thing wrong with this? I'm getting a MySQL syntax error, and I'm hoping I won't have to do SET username = '$username', password = '$password' etc etc....
$query = "UPDATE clients SET ( username, password, clientname, email, phone, fax,
address1, address2, city, state, zip, accesscal, accessnote, accessrec )
= VALUES( '$username', '$password', '$clientname', '$email', '$phone', '$fax',
'$address1', '$address2', '$city', '$state', '$zip',
'$accesscal', '$accessnote', '$accessrec' )
WHERE clientname='$clientname'";
Am I just being lazy, or is there a way to make this work?