|
Posted by J.O. Aho on 11/23/05 08:41
lane.dj@gmail.com wrote:
> I'am having a problem with an SQL statement...
>
> The Time column is populated using a php time() function.
>
> How do I use the TIME column to give me only the last 7 days worth of
> data. Not sure how to manipulate unixtime formats... any help would be
> appreciated..
A week is 604800 seconds, so you need to get the current time and then reduce
that with 604800 seconds or you can use the mktime to create a the time for
midnight of today, so that you can get all of entries a week ago.
mktime(0,0,0,date('n'),date('j'))
//Aho
[Back to original message]
|