How would i go about updating a enum option
would it just be the normal way you update something like
mysql row user ENUM('yes','no');
php code
$DB_site->query("UPDATE user SET user='yes' WHERE id='1'");
thanks in advanced
Yes, that is correct (You have to give it a value of either a yes or a no in your example).
-JoshB