1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace cmf\view;
- class Table {
-
- public static function tableHeader($headers = []) {
-
- $html = "<thead><tr>";
- foreach ($headers as $val) {
- $html .= "<th width='50'>{$val}</th>";
- }
- $html .= "</tr></thead>";
- return $html;
- }
- }
|