> >$result = mysql_query ("SELECT * FROM `data` WHERE categories");

Where categories is what?? You don't have any comparison...

What it's doing is evaluating the column as true or false. Any integer
column > 0 will evaluate to true, so that row will be returned. "1A" will be
converted to 1, so it'll be returned as true. "CD" will be converted to
zero, so that row will not be returned...

---John Holmes...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to