hi! if u need the whole row then u need another query below to select * from Table where ID = '$ID' (which is the one u have just retrieved in the previous query)....u run the query and fetch all remaining data....hope the best..!
kees mekhalel
12:17 pm on Sep 21, 2005 (gmt 0)
Thank You for your replay but there is now a one sql statement
jpjones
12:27 pm on Sep 21, 2005 (gmt 0)
Try
SELECT * FROM Table ORDER BY ID DESC LIMIT 1
This has the effect of returning the full contents of 1 row, with the highest (Max) ID.