--TEST-- 22.phpt: thead, tfoot, tbody and addCol --FILE-- getHeader(); $tfoot =& $table->getFooter(); $tbody =& $table->getBody(); $data[0][] = 'Test'; $data[1][] = 'Test'; foreach($data as $key => $value) { $thead->addCol($value); $tfoot->addCol($value); $tbody->addCol($value); } // output echo $table->toHTML(); ?> --EXPECT--
Test Test
Test Test
Test Test