Jump to content

how can I get these results out of my table ?


doctor_james

Recommended Posts

I've created a table to save my website visits , the fields are id,Ip,date,page,broswer .

By each visit , a Record are added to the table so each day can have several records. Now I wanted to get this Information out of these Information:

 

1) Hits for the busiest day .

2) Hits for this week.

3) Hits for this month.

4) Hits for this year.

 

How can I do it ? Is this possible with the information I've collected ?

Thanks in advance .

 

 

 

sure you can get those results

//Assuming your db table's name is table and your timestamp is named stamp:
// For all the hits of the month
$sql = mysql_query("SELECT * FROM `table` WHERE MONTH(`stamp`) = '10' AND YEAR(`stamp`) = '2008'");

// For all the hits of the year
$sql = mysql_query("SELECT * FROM `table` WHERE YEAR(`stamp`) = '2008'");

 

Can't think of the best route to get the busiest day right now, but yeah if you get the data you say you are, that's all you need to pull these records

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.