I need to drop results based on greater and less than query. I will try to explain...
I queried the database for the results that are less than 'value'... the problem I have now is that some of those rows need to not be displayed if they also have values between the less than value and a larger value.
Searched and received all records where num<='7' - now working and displaying
now I need to drop any any rows where num is between 8 and 10 and only display the ones that are <='7'
Is there a simple query or if statement to allow this??
doing all of this in PHP by the way.