in reply to
mysql pull back highest column
If you just want to grab the highest 'id' existing in your table, this mysql query should do the trick:
SELECT MAX(id) FROM tablename
[download]
Comment on
Re: mysql pull back highest column
Download
Code
In Section
Seekers of Perl Wisdom