Login   Register  
PHP Classes
elePHPant
Icontem

File: e2.calendar.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Nigel Johnson  >  Date Chooser  >  e2.calendar.php  >  Download  
File: e2.calendar.php
Role: Example script
Content type: text/plain
Description: example 2 frame HMTL
Class: Date Chooser
Outputs a calendar to let the user choose a date
Author: By
Last change:
Date: 2004-07-13 11:28
Size: 448 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<?php
include_once('DateChooser.php');
?>
<html>
<head><title>Calandar Chooser</title>
<link rel="stylesheet" href="chooser.css" type="text/css">
</head>
<body><center>
<?php
    $gc
=new DateChooser();
    
$gc->weekStartsOn("sun");
    
$gc->onSelect("e2.values.php""c_values");
    echo 
$gc->generateCalendar($yr$mon$day);
?>
</center></body>
</html>