Forum Moderators: coopster
As for the drop down box, you would just create a while loop to echo <option> tags for each size:
//Mysql Stuff
$num = mysql_num_rows($result);
$x = 0;
while($x<$num){
$size = mysql_result($result,$x,"size");//Get your size value
echo "<option value=".$size.">".$size."</option>";
$x++;
}
Chris