PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Alessandro Rosa   Simple Calendar   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: example file of calendar code implementation
Class: Simple Calendar
Displays month calendars
Author: By
Last change: none
Date: 17 years ago
Size: 230 bytes
 

Contents

Class file image Download
<LINK REL="StyleSheet" HREF="calendar.css" TYPE="text/css">

<?php

require_once( "calendar.php" );

$cal = new calendar();

$cal->set_sunday_start( TRUE ) ;
$cal->display_english_date( TRUE ) ;

$cal->build_it();
?>