Created
April 28, 2011 15:42
-
-
Save siffring/946604 to your computer and use it in GitHub Desktop.
ExpressionEngine list of new members by month
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{!-- Displays the number of new ExpressionEngine members by month --} | |
{exp:query sql="select count(*) AS total, month(from_unixtime(join_date)) as month, year(from_unixtime(join_date)) as year from exp_members group by year, month order by year DESC, month DESC"} | |
<br/>{year}-{month}: {total} | |
{/exp:query} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment