Code: Select all
<?php
<select name="processors" id="processors">
<?
while ($row_processors = mysql_fetch_array($rs_processors))
{?>
<option>
<?
echo $row_processorsї'brand']; echo " - ";
echo $row_processorsї'name']; echo " - $"; echo $row_processorsї'price'];
?>
</option>
<? } ?>
<option selected><?php echo "Choose / Remove Product";?></option>
</select>
?>Code: Select all
SELECT brand, name, price
FROM products
WHERE category LIKE 'processors'
ORDER BY brand, name
... so following how the code is ordering the info, the 1st. element in the drop down menu should be:
AMD - ATHLON 1.3 GHZ - $85.40
But what I'm getting is this ...

As you can see, the 1st. element (AMD - ATHLON 1.3 GHZ - $85.40) is not appearing, why
thx for ur help