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