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 .

 

 

 

Link to comment
Share on other sites

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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.