> Is there a quick and easy way to find out the record id of the last
record
> in
> a table?  I need to read the last record and let the user know what
the
> date
> of the last record added is.

SELECT date FROM table ORDER BY date DESC LIMIT 1

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



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

Reply via email to