hey, How do i make a date thats 3 months ago, would it be with with gmdate?
i tried something along the lines of " gmdate("m") -3 " but it wouldn't work when it gets to january, is there something i'm missing? thanks.
try this...
echo "3 months ago ". date("d/m/y - h:i:s",strtotime("-3 months") );
echo date('Y-m-d H:i:s', strtotime('-3 months'));