Hello everyone, I'm running my business site with custom PHP pages + aMember v3.1.9, I want to display the aMember total active & expired user on my custom PHP homepage, is there a way to implement this? Thanks a lot! Roy
Roy sure possible. You can get this info with two simple MySQL queries: select count(*) from amember_members where status=1 - will return active users count select count(*) from amember_members where status=2 - will return expired users count