PHP Classes

File: e2.calendar.php

Recommend this page to a friend!
  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: 19 years ago
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>