> Using PHP and a MySQL database, I want to grab the highest 
 > number in a particular column.

As is usual for questions like this, the answer is most likely that you
should do it in your sql query.  In this case, something like this would
probably do it:

SELECT MAX(some_column) FROM some_table WHERE some = condition

CYA, Dave




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

Reply via email to