Something like:
PHP Code:
$ordered_cats = array();
while ($cat = $vbulletin->db->fetch_array($cats))
{
if(!$cat['sub_cat'])
{
$ordered_cats[$cat['id']] = $cat;
}
else {
$ordered_cats[$cat['parent_cat']]['subcats'] = $cat;
}
}
That's not tested..but should point you in the right direction, hopefully. You can order by the sub_cat column and make sure that all parents are selected first.