If I add qty!=0 wouldn't that list all 0 qty's
code
// loop through table and get first 3 results
$results = mysql_query("SELECT * FROM music WHERE user_id = '$user_id' ORDER BY order_list LIMIT 3");
while($row = mysql_fetch_array($result)) {
echo "List fisrt 3 results";
ie 1. Dance with me
2. Hotel California
3. Beat it
4. Madonna Music
Say Hotel California's qty was 0
then the list should show 1, 3, 4
I used a if() it remove the zero qty but does not advance to the next selection.
Using php3
Thanx