/* Untested Code */ $arr[0]['id'] = 3; $arr[0]['name] = 'Mike'; $arr[1]['id'] = 2; $arr[1]['name'] = 'Bob'; $arr[2]['id'] = 5; $arr[2]['name'] = 'Jane';
array_multisort($arr['id'],$arr['name']); print "It's ".$arr[0]['name']."'s Turn To Take Out The Garbage!"; /* End Untested Code */ On Thu, 14 Oct 2004 11:26:56 -0500, Matt M. <[EMAIL PROTECTED]> wrote: > On Thu, 14 Oct 2004 10:52:20 -0500, BOOT <[EMAIL PROTECTED]> wrote: > > OK thanks but I guess I didn't explain what I am trying to do properly. > > > > I need to be able to identify the variable name as well as pick the variable > > with the lowest value. > > > > Something like this: > > > > Whose turn is it to take out the garbage? > > > > Mike has done it 3 times > > Bob has done it 2 times > > Jane has done it 5 times > > etc... > > > > Therefore its Bob's turn..... > > > $arr['Mike'] = 3; > $arr['Bob'] = 2; > $arr['Jane'] = 5; > > foreach ($arr as $key => $value) { > echo $key.' has done it '.$value.' times<br />'; > } > asort($arr); > print 'It is '.key($arr).'\'s turn'; > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- <<-------------------------------------------------------- Jasper Howard - Database Administration ApexEleven.com 530 559 0107 ------------------------------------------------------->> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php