Hi,
I'm working with dates and i have this
$date = date("d-m-Y");
What i need is to print the date in this same format but 3 months away , i keep getting a really large year which is no good to me.
Thanks
$date = date("d-m-Y", strtotime("+3 months"));
perfect thanks i was trying to be more complicated that i ought.