Login   Register  
PHP Classes
elePHPant
Icontem

File: README

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Nilesh Dosooye  >  Convert Class To HTML Table  >  README  >  Download  
File: README
Role: Documentation
Content type: text/plain
Description: how to use this class
Class: Convert Class To HTML Table
Displays a class structure and data in HTML
Author: By
Last change:
Date: 2004-01-14 08:34
Size: 537 bytes
 

Contents

Class file image Download
This class converts a class object or collections of classes into easily viewable html tables. It helps in easy debugging and display of data saved in your classes or collection or classes.

This class is assuming for every variable in your class, you have a get method to retreive the data. If you dont have a get method, the code can be easily changed to take care of it.

example use
<?
		$thisClassToHTML = new convertClassToHTMLTable();
		$thisClassToHTML->setClassObject($someClass);
		$thisClassToHTML->generateHTML();
?>