$cellWidth = 25;
$cellHeight = 25;
$month = 4;
$year = 2006;
$dateNames[1] = "Sun";
$dateNames[2] = "Mon";
$dateNames[3] = "Tue";
$dateNames[4] = "Wed";
$dateNames[5] = "Thr";
$dateNames[6] = "Fri";
$dateNames[7] = "Sat";
$firstDate = mktime(0,0,0,$month,1,$year); // time Stamp
$lastDate = mktime(0,0,0,$month + 1, 0,$year); // time Stamp
$currentDate = mktime(0,0,0,$month,1-date('w',$firstDate),$year); // time Stamp
echo "";
echo " ";
echo "".date('F',$firstDate)." $year";
echo "";
for($i=0;$i<7;$i++){
echo " ";
for($j=1;$j<=7;$j++) {
if(!$i) { echo "$dateNames[$j]"; }
else {
echo"".date('j',$currentDate)."";
$currentDate = mktime(0,0,0,date('n',$currentDate),
date('j',$currentDate)+1,date("Y",$currentDate));
}
}
echo "";
}
echo "";
2 days ago
1 comments:
Post a Comment