<?php
function tra_90gg($d){//fai entrare la data nel formado gg/mm/aa
$ex=explode("/",$d);//bisonga essere sicuri che il separatore sia /
$d_90=mktime(0,0,0,$ex[1],$ex[0], $ex[2])+(90*24*60*60);
return date("d/m/Y",$d_90);
}
//test
$oggi=date("d/m/Y");
echo "oggi è il $oggi<br />";
echo " tra 90 giorni sarà il ".tra_90gg($oggi);
?>