blob: 7d619dcea45d9fd3f174e98ad5fce7d3d46ed8c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<table class="<?php echo $vars['class']; ?>">
<?php
echo "<thead><tr><th>column 1</th><th>column 2</th></tr></thead>";
for ($i = 1; $i < 5; $i++) {
echo '<tr>';
for ($j = 1; $j < 3; $j++) {
echo "<td>value $j</td>";
}
echo '</tr>';
}
?>
</table>
|