Quote:
05-17-03 at 09:52 PM Xenon said this in Post #13
yes the code will work right.
nope every new day the value will be recalculated.
it will not have weekly stats but stats the last 7 days
|
so Xenon the variable mean last 7 days
$d = mktime (0,0,0,date("m"),date("d")-7,date("Y"));
if i want last 30 days should i change like this
$d = mktime (0,0,0,date("m"),date("d")-30,date("Y"));
is that right?