multirow table header
how to do this t header? with rowspan,colspan and without sort...
<html>
<body>
<table border="1">
<thead>
<tr>
<th rowspan="2">text</th>
<th colspan="2">text</th>
</tr>
<tr>
<th>text</th>
<th>text</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
</tbody>
</table>
</body>
</html>
A Maks
February 2,