$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 "";
Friday, April 28, 2006
PHP Script for genarate a calender
Subscribe to:
Post Comments (Atom)
Azure Storage Account Types
Defferent Types of Blobs Block blobs store text and binary data. Block blobs are made up of blocks of data that can be managed individually...
1 comment:
Post a Comment