I'm looking for a little help with my code ...I think I have the theory of it wrong here...
Basically I want from the start of the day (two days ago) till the end of the day (two days ago)
PHP Code:
$twodaysago = TIMENOW - (48 * 60 * 60);
$endoftwodaysago = TIMENOW - (24 * 60 * 60);
maybe its supposed to be similiar to this?
PHP Code:
$twodaysago = TIMENOW - (48 * 60 * 60);
$endoftwodaysago = TIMENOW - (48 * 60 * 60) + something?;