Hi, I need to show 10 latest member name and state that join the system on the site bar. Anyone can help? site: flexireload.com Thanks
It is working with a database right? You can get this down with some SQL help. first get the members list in the order they got register (You can do that with a select statement) after that extract the top 10 values using (Select Top 10 * ......) and then print it on the website like in a table.
assuming you have an auto incremented id field on your table - if not add one. select top 10 * from table order by id desc