Here\'s what I thought:
while($row=mysql_fetch_array($sql_result))
{
$size[]=$row[\"size\"];
$chest[]=$row[\"chest\"];
$sleeve[]=$row[\"sleeve\"];
}
asort($size);
asort($chest);
asort($sleeve);
And then print the criteria.
But I get a \'wrong data type\' error no matter what kind of sort() I do.
How can I sort these variables by their values?