Hi,
I need a little help modifying a small bit of code, but i’m not too hot and coding :-[
it basically displays at date in the database, but i now need it to add 12 months onto this date. Any ideas how this can easily be done?
[php]$dateTemp = explode(’-’,$bookingData[‘bdate’]);
$bookingDate = mktime(12,0,0,$dateTemp[1],$dateTemp[2],$dateTemp[0]);[/php]
Many Thanks