Steve Jackson wrote: > I want to the select the very last record from my MySQL DB. How do I > do it?
If the table has an id, use select * from <table> order by id desc limit 0,1 Grtz Erwin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php