i have this query
"SELECT * FROM mytable WHERE quality=$quality";
$quality is set in a dropdown menu, to which i've just added the option "ANY"
so i need to be able to run the query and show everyting selected of ANY quality
but of course if i do
"SELECT * FROM mytable WHERE quality=any";
it will just error
is there a way around this?
thanks
jg