Forums | Mahara Community
Support
/
Creating a list of all users
16 March 2011, 12:52
Greetings,
I'm presently co-administering our Mahara web site at a small liberal arts college and we have approximately 475 users. I'd like to generate a report that lists the names of all users of our system as well as their e-mail addresses and export it as an ASCII text file or a similar format that I can pull into a word processor. Is this possible and, if so, where can I find the steps to do so. Thanks!
16 March 2011, 17:52
We don't have a CSV export available at the moment, but you can easily get what you need from the database if you don't mind a bit of SQL:
SELECT firstname, lastname, email FROM usr;
Cheers,
Francois