SVBC TTD
Sri Venkateswara Bhakti Channel-Tirumala Tirupati Devastanams.
Comments
modify('+1 day');
$nextDates = $nextDate->format('Y-m-d');
$currentDate = new DateTime($nextDates);
// Create an empty array to store the dates
$dates = [];
// Generate the next 30 dates
for ($i = 1; $i <= 30; $i++) {
// Add the current date to the array
$dates[] = $currentDate->format('Y-m-d');
// Move to the next day
$currentDate->modify('+1 day');
}
// Print the dates
foreach ($dates as $date) {
echo $date . "
";
}
?>