$gone = '<br><font size="4" color="#FF0000">GONE</font><br>';
$numresults=mysql_query("select * from storeProduct where storeProduct.productCategory = '$categoryID' and productDescription != '$gone' order by productName");
$numrows=mysql_num_rows($numresults);
Is this a legitamate mysql query, and should it work. It doesn't seem to be doing what it's suppose to be doing.
Oh yeah....and it's not returning any errors though.
Wait a second. I just thought about it.
I don't need " != " I need " !like '%$gone%' " or maybe 'does not contain '$gone'";
How would you word this?