Okay I have a database setup along the lines of:
|month|day|year|ip|
Is there a way I can find out how many unique hits I got that day? Besides grouping by ip? I would like to do this for more than one day per query so it would help much thanks in advance
The views expressed on this page by users and staff are their own, not those of NamePros.
SELECT DISTINCT ip FROM tablename WHERE day = $day
I don't know how you have day set up, but if it's a string or something just add quotes around it. I'm guessing you have today's date in the columns except for ip?