Hello,
I have a table which stores featured from and to for objects. I would like to unfeature an item via ajax.
The way I have decided todo that is to set any featured rows for an object called to -1 day from now so its no longer featured.
However my query isn't working.
UPDATE `Movie_Featured` SET `to` = DATE_SUB(CURDATE(), INTERVAL 1 DAY) WHERE id > 0 $where
Ideas? Thanks!