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
// This puts the day, month, and year in seperate variables
$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
7 weeks 6 days ago
8 weeks 5 days ago
15 weeks 3 days ago
16 weeks 5 hours ago
17 weeks 3 days ago
20 weeks 2 days ago
24 weeks 6 days ago
29 weeks 5 days ago
35 weeks 3 days ago
42 weeks 2 days ago