salve a tutti, ho un problema con una tabella; quello che vorrei ottenere č una tabella strutturata in questo modo:

codice:
-------------------------------------------------------------
|     1      |      2        |       3        |       4      |
-------------------------------------------------------------
|                                    |        |      7       |
|               5                    |   6    |--------------|
|                                    |        |      8       |
-------------------------------------------------------------

uso il seguente codice:

<table border=1>
<tr>
		<td>1</td>
		<td>2</td>
		<td colspan="2">3</td>
		<td >4</td>
</tr>
<tr >
		<td rowspan="2" colspan="3">5</td>
		<td rowspan="2">6</td>
		<td>7</td>
</tr>
<tr>
		<td>8</td>
</tr>
</table>
Non riesco a capire perchč non mi esca... qualcuno sā dove sbaglio?