dvil88
By: a guest | Jan 7th, 2010 | Syntax:
PHP | Size: 0.76 KB | Hits: 6,354 | Expires: Never
<?php
//set this to select when the week starts
// 0 = Monday
// 1 = Sunday
$day_start = 0;
//set this to your time zone
$j = $first_day;
//white spaces
for ($x = 1 ; $x < $j ; $x++)
//days of the month
for ($i = 1 ; $i <= $total ; $i++) {
if($i == $today) {
$color_day = ($today < 10) ? ' '.$i : ' '.$i;
echo chr(27),'[','31m',$color_day,chr(27),'[','0m';
} else
//end of the week
if ($j == 7){
$j = 0;
}
$j++;
}
?>