<?php $current_month_first_day = new DateTime('first day of this month'); // first day of the current month $current_month_last_day = date('t'); // last day of the current month $interval = new DateInterval('P1D'); $period = new DatePeriod($current_month_first_day, $interval, $current_month_last_day - 1); print_r($period); ?> <!-- Sitting Date START --> <div class="sitting-days"> <h4 style="text-align:center;">Select Date</h4> <?php foreach ($period as $date){ ?> <div class="select-date" style="margin-right:30px; margin-top:20px;"> <input type="date" class="house-sitting-date" name="house_sitting_date[]" value="<?php echo $date->format("Y-m-d"); ?>"> </div> <?php } ?> </div> <!-- Sitting Date END -->
You have javascript disabled. You will not be able to edit any code.
This script was stopped while abusing our resources