Might be quicker to run a MySQL delete:
DELETE from xmb_members where lastvisit < 'DATETIME"
NOTE:
- This will delete all members prior to a nominated date. You need to change DATETIME to a UNIX format as the DATETIME on the database is held in unix
format. You can use this site:
http://www.onlineconversion.com/unix_time.htm
to convert a Date/Time to a Unix timestamp.
- Note that the above DELETE will also delete members who have never logged in.
- Always backup the table mentioned in a DELETE before running the DELETE statement