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.....

$a = array(3 => 'Mike', 2 => 'Bob', 5 => 'Jane');
sort($a);
echo $a[0];


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to