PHP Classes

File: loaddefinition.php

Recommend this page to a friend!
  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: 20 years ago
Size: 146 bytes
 

Contents

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