Hello There -
I want to be able to add 2 months to the date pulled from this query ... can;t get the right syntax:
?php echo date ("m/d/Y",strtotime($row_gethistory['date'])); ?>
Thanks
Rob M
whats the date format look like that you are querying?
Try
echo date ("m/d/Y",strtotime("$row_gethistory['date'] +2 months"));
I tried
echo date('d m Y', strtotime('2003-08-16 +2 months'));
and that worked OK.