I have a mysql statement that looks like
CODE
SELECT pID,pName,pImage
FROM products
WHERE pSection = 'sectionID' AND pDisplay = '1' AND pName NOT IN('bubble','bobbole','rewjd')
Is this supposed to give me all values not in the list provided or have I missed something? It is actually running in PHP code but it does not seem to filter out the specified values.
Thanks,
[since this is html I didn't post the PHP code, but I can if you want]