SimpleCalendar is a very simple PHP calendar class written to be easy to use and flexible.
It includes basic event logic and is made to be modified to your particular needs.
More Details Soon
<?php
require_once('SimpleCalendar.php');
$calendar = new SimpleCalendar();
$calendar->addDailyHtml( 'Sample Event', 'today', 'tomorrow' );
$calendar->show(true);
?>
| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 Sample Event | 19 Sample Event |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | 30 | 31 |
Click here for the Github repository.
| Build | Date | Message |
|---|---|---|
| v.1 Download | Merge branch 'master' of github.com:donatj/SimpleCalendar |