Login   Register  
PHP Classes
elePHPant
Icontem

File: loaddefinition.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  >  Bar Graph generator  >  loaddefinition.php  >  Download  
File: loaddefinition.php
Role: Example script
Content type: text/plain
Description: Example of how to load de definition file
Class: Bar Graph generator
Generates bar graphs from file definitions
Author: By
Last change: Miss spelled a method name. Corrected ;)
Date: 2004-04-09 06:08
Size: 146 bytes
 

Contents

Class file image Download
<?php
  
include "class.bargraph.php";
  
  
$bg = new BarGraph();
  
  
$bg->LoadGraph(realpath("./graph.def"));
  
  
$bg->DrawGraph();
?>