"; foreach($this->headers as $headers) print "$headers"; print "\n"; foreach($this->table_array as $y) { foreach($y as $xcell) print "$xcell"; print "\n"; } print ""; } } $test = new table(array("a","b","c")); $test->addrow(array(1,2,3)); $test->addrow(array(4,5,6)); $test->output(); ?>