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