Posted it on my blog, but I decided that I should share it here as well, for those of you that need a simple php calendar.
<?php
// This gets today's date
$date = time ();
// This puts the day, month, and year in seperate variables
$day = date('d', $date);
$month= date('m', $date);
$year = date('Y', $date);
// Here we generate the first day of the month
$first_day = mktime(0,0,0,$month, 1, $year);
//This gets us the month name
$title = date('F', $first_day);
Recent comments