Jump to content

[SOLVED] Add 1 Month To Date


refiking

Recommended Posts

Something like:

 

$month1 = strtotime("now");
echo date("F j, Y", $month1) . "
";
$month2 = strtotime("+ 15 Days");
$month2 = date("F j, Y", $month2);
echo $month2 . "
";
$month3 = strtotime("$month2 + 1 Month");
echo date("F j, Y", $month3) . "
";

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.