Hi, i have a website, how do i see how many users have made accounts with my site through c-panel?

I want to be able to see how many users have made accounts by looking at c-panel. Can anyone tell me where to go.

Best Answer will be given

PAVAN2013-09-06T07:50:12Z

Favorite Answer

Cpanel cant keep track of your database in which your website users data is stored.

To check no of users registered you can do below things

1. You can go to phpmyadmin(or other DBMS whichever you are using) and go to the table where the user reg details are stored. In this case number of rows(i.e. no of tuples) = number of registered users

2. You can write a small script using whichever server side scripting you are using and run it whenever you want to see the count. This script will not be more than 10 lines and easier to write( for ref you can refer http://stackoverflow.com/questions/607264/how-can-i-count-the-numbers-of-rows-that-a-mysql-query-returned)

Hope this will be helpful...