PHP Classes

File: basic-demo.php

Recommend this page to a friend!
  Classes of Suranga Niroshan Fernando   Calendar Display   basic-demo.php   Download  
File: basic-demo.php
Role: Example script
Content type: text/plain
Description: basic demo
Class: Calendar Display
Display calendar months with special day marks
Author: By
Last change:
Date: 12 years ago
Size: 188 bytes
 

Contents

Class file image Download
<?php
   
include('class.calendar.php');
   
$cal= new calendar();
   
   
$cal->setDate(6,2011);
   
    try{
       
$cal->writeCalander();
    }catch(
Exception $ex){
        echo
$ex->getMessage();
    }

?>