This is a discussion on Re: [PHP] How many Mondays in a month? within the PHP General forums, part of the PHP Programming Forums category; * Thus wrote Phil Dowson (pj_dowson@hotmail.com): > Hi, > > I have posted a similar question in php.db, ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
* Thus wrote Phil Dowson (pj_dowson@hotmail.com):
> Hi, > > I have posted a similar question in php.db, but I was wondering if someone > could help out with a non-db issue. I am trying to display statistics of > visitors to my web site, and what I would like to do is show the average > number of visitors that have visited the site in a given month for a certain > day e.g..: > > Stats for www.mysite.com for 09/2003 > > Monday - 15 average - 65 total > Tuesday - 16 average - 66 total > Wednesday - 14 average - 65 total > Thursday - 13 average - 63 total > Friday - 15 average - 65 total > Saturday - 5 average - 25 total > Sunday - 6 average - 28 total Still sort of a db question: select dayofweek(datefield) as dayindex, count(*) total, from stats group by dayindex; Curt -- "I used to think I was indecisive, but now I'm not so sure." |