Skip to content

Instantly share code, notes, and snippets.

View zeeforum's full-sized avatar
🎯
Focusing

Zartash Zulfiqar zeeforum

🎯
Focusing
  • DatumSquare IT Services
  • Lahore, Punjab Pakistan
  • X @zeeforum
View GitHub Profile
@zeeforum
zeeforum / calendar.php
Created April 2, 2018 22:44
Create Calendar Between Two Dates in PHP (Including Start Date and Excluding End Date)
<?php
function createDatesTable($period, $start) {
$calendarStr = '';
foreach ($period as $key => $date_row) {
if ($start%7 == 0) {
$calendarStr .= '</tr><tr>';
}
$calendarStr .= '<td class="date">' . $date_row->format('d') . '</td>';
$start++;