The dates in my php application are being printed from the database, for example
{$orders->OrderDate|date_format:'%d-%m-%Y %H:%M:%S'}
Prints this
27-10-2008 16:11:44
Now I need to add 2 days to this final result i.e 29-10-2008 16:11:44
How to I modify the smarty statement above?
Thanks in...