I want a script by which I can count the registered users I repeat the only users which is registered not visitors and want to show them on my homepage a prime example is www.myLot.com. Any help will be appreciated!
I want a script by which I can count the registered users I repeat the only users which is registered not visitors and want to show them on my homepage a prime example is www.myLot.com. Any help will be appreciated!
1) you would need a database of some sort mysql probably being the easiest
2) you would need a server-side language like php
perform a query to count the number of users that are registered.
without much info on your site structure there isnt much we can do in the way of providing a specific script to you.PHP Code:$query = mysql_query("SELECT COUNT(field) FROM table");
the more information you share the better we are able to help you!
Bookmarks