Department
Taglines - We Do The Heavy Lifting
| Heading | row |
| Footer | row |
| Row | 1 |
| Row | 2 |
| Row | 3 |
| Row | 4 |
| Row | 5 |
<?php
require_once 'UNL/Templates.php';
$page = UNL_Templates::factory('Fixed');
$page->head .=<<<STYLE
<style type="text/css">
#table_id tbody tr:hover td {background-color:#FFFFC7 !important;}
</style>
STYLE;
$page->maincontentarea =<<<MC
<table id="table_id">
<thead>
<tr><th>Heading</th><th>row</th></tr>
</thead>
<tfoot>
<tr><td>Footer</td><td>row</td></tr>
</tfoot>
<tbody>
<tr><td>Row</td><td>1</td></tr>
<tr><td>Row</td><td>2</td></tr>
<tr><td>Row</td><td>3</td></tr>
<tr><td>Row</td><td>4</td></tr>
<tr><td>Row</td><td>5</td></tr>
</tbody>
</table>
<script type="text/javascript">stripe("table_id");</script>
MC;
$page->maincontentarea .= highlight_file(__FILE__, true);
echo $page->toHtml();