Login   Register  
PHP Classes
elePHPant
Icontem

File: basic-demo.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2011-06-21 02:19
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();
    }

?>