“;

$d=strtotime(“next Saturday”);
echo date(“Y-m-d h:i:sa”, $d) . “
“;

$d=strtotime(“+3 Months”);
echo date(“Y-m-d h:i:sa”, $d) . “
“;
?>