Log in

View Full Version : Population script problem



bbilal
10-19-2007, 08:38 PM
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!

boogyman
10-19-2007, 08:46 PM
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.


$query = mysql_query("SELECT COUNT(field) FROM table");

without much info on your site structure there isnt much we can do in the way of providing a specific script to you.

the more information you share the better we are able to help you!