x
 
<!DOCTYPE html>
<html>
<body>
<?php
$date=date_create("1980-10-15");
date_add($date,date_interval_create_from_date_string("100 days"));
echo date_format($date,"Y-m-d");
?>
</body>
</html>