PHP Classes

File: test2.php

Recommend this page to a friend!
  Classes of Diogo Resende   Schedule   test2.php   Download  
File: test2.php
Role: Example script
Content type: text/plain
Description: Script to view test2.xml
Class: Schedule
Render schedule time tables from XML definitions
Author: By
Last change:
Date: 19 years ago
Size: 211 bytes
 

Contents

Class file image Download
<?php
 
include 'class.schedule.php';
 
 
// this is my 2nd period schedule of the 2nd grade of my college course
 
$sch = new Schedule();
 
$sch->LoadXmlFile(realpath('test2.xml'));
 
$sch->Draw();
?>