I am trying to select everything from the database except one.
Using the syntax in the header doesn't work, is this their other way?
WHERE column <> '$value'
Try the following:
WHERE column != '$value'
IS NOT used with null
IS NOT
eg:
WHERE column IS NOT NULL