Hi Dave
Here's the code. Let me know if you have problems. Make sure to replace the template name and use the correct path for your calendar.
<?php
// print each months string name (i.e. January 2009)
$year = "2009";
for ($mo=1; $mo<=12; $mo++) {
// print month headers
$monthStr = date("F Y", mktime(0, 0, 0, $mo, 1, $year));
echo $monthStr."<br>";
// print each months events
$epcListMouseover=1; // use pop ups
$LIST=1;
$DF = "d M D";
$template="mytemplate.php";
require("../calendar/calendar.php");
}
?>
-Christine
|