$get = mysql_query ('SELECT id , name, description, price , shipping FROM products WHERE id < 100 ORDER BY id DESC');
How do I manage to make it like this, so it order from 1-100 ids, and also check if there is quanity's
$get = mysql_query ('SELECT id, name, description, price , shipping FROM others WHERE quantity > 0 ORDER BY id DESC');
Both works, but I want them mixed together, so it reads if there is quanity's And from id < 100
- Thanks