';
echo '
';
echo 'Sun | Mon | Tue | Wed | Thu | ' .
'Fri | Sat |
';
// output date cells
$current = 1;
while ($current <= $total_days)
{
echo '';
for ($i = 0; $i < 7; $i++)
{
if (($current == 1 && $i < $first_day_of_month) ||
($current > $total_days))
{
echo '  | ';
continue;
}
echo '' . $current . ' | ';
$current++;
}
echo '
';
}
echo '';
$GLOBALS['TEMPLATE']['content'] = ob_get_clean();
// assign styles for calendar
$GLOBALS['TEMPLATE']['extra_head'] = '';
// display page
include '../templates/template-page.php';
?>