PHP Classes

File: calendar.php

Recommend this page to a friend!
  Classes of Matt Malenski   Smarty Calendar   calendar.php   Download  
File: calendar.php
Role: Example script
Content type: text/plain
Description: Example of creating a Calendar Object
Class: Smarty Calendar
Generate month calendars using a Smarty template
Author: By
Last change:
Date: 18 years ago
Size: 437 bytes
 

Contents

Class file image Download
<?
/**************************************************
 FILENAME: calendar.php
 PURPOSE: Creates Calendar Object and displays month view
 AUTHOR: Matthew A. Malenski
 DATE CREATED: Thu Jun 30 09:37:53 2005
**************************************************/

require_once('./calendar_vars.php');
require_once(
'./calendar_class.php');

//--- Create a Calendar Object
$my_cal = new calendar();
$my_cal->month_view();


?>