|
SELECT COUNT(DISTINCT surfer_ip) FROM clubd_counter_data WHERE table_that_holds_the_page LIKE 'index.hml'
Change "table_that_holds_the_page" to the correct table name that has the page name and "index.html" to the page you want to count unique IP's on.
|