SELECT TOP 8 M_MEMBER, M_DATE from SITE_MEMBERS Order by MEMBER_ID DESC
This will return you a recordset with the last eight entries from the table (assuming your autonumber field is called MEMBER_ID). You can then loop around the recordset to display those fields as you like.
Does this help at all?
KatsKorner