Max's Calendar PHP Script
Max's Calendar PHP Script
Calendar viewer, easy to use.
Installation:
Copy the downloaded files to your storage, index.php displays the calendar.
Use:
You can paste the calendar with your own website (first parameter is year, second number of month.
Calendar viewer, easy to use.
Installation:
Copy the downloaded files to your storage, index.php displays the calendar.
Use:
You can paste the calendar with your own website (first parameter is year, second number of month.
<?php
require_once("maxCalendar.class.php");
$myCelandar = new maxCalendar();
$myCelandar->showCalendar(2007,10);
$myCelandar->showCalendar(2007,11);
$myCelandar->showCalendar(2007,12);
$myCelandar->showCalendar(2008,1);
$myCelandar->showCalendar(2008,2);
$myCelandar->showCalendar(2008,3);
?>
Comments
Post a Comment