View Single Post
Old 10-01-2003, 06:52 PM   #5 (permalink)
bdl
Senior Contributor
 
Join Date: May 2002
Location: vta.ca.usa
Posts: 555
bdl is on a distinguished road
This works:

PHP Code:
for ($i 0$i count($browser); $i++) {
    
$tmparray[$i]['count'] = $browser[$i]['count'];
    
$tmparray[$i]['name'] = $browser[$i]['name'];
}
sort($tmparray);
$browser $tmparray
bdl is offline   Reply With Quote