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();
?> |