Login   Register  
PHP Classes
elePHPant
Icontem

File: test2.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2004-07-07 16:32
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();
?>