PHP Source:
<
!DOCTYPE
html
>
<
html
>
<
body
>
<?php
$date=date_create(
"2013-05-01"
);
date_modify($date,
"+15 days"
);
echo
date_format($date,
"Y-m-d"
);
?>
<
/body
>
<
/html
>
Result:
Privacy Policy