Is there a tutorial that will show you how to code your own PHP script that will display your most recent registered members?
+3
A:
I guess, you are using MySQL. Then look at PHP manual: mysql_fetch_array (see examples). Just query should be something like:
SELECT * FROM users_table ORDER BY register_date DESC LIMIT 5
Pawka
2009-09-20 16:37:35
Why the down vote?
JoshJordan
2009-09-20 16:53:40
Because some users use all their earned points for down votes:-)
Pawka
2009-09-21 06:30:28
A:
Query your database table, eg:
SELECT * FROM members ORDER BY member_id DESC LIMIT 5
gets you the 5 most recent additions to that table. Assuming when they register, they get a new entry in the table and member_id is your auto-incrementing Primary Key...
richsage
2009-09-20 16:38:34