Hola Durin, prueba así
Código PHP:
<table border="1" sumary="Listado de patentes y seguros">
<tr>
<th>Patente</th>
<th>Seguro</th>
</tr>
<?php
while ($row = mysql_fetch_array($resultado)){
foreach ($row as $row){
echo '<tr>';
echo '<td>'.$row['patente'].'</td>';
echo '<td>'.$row['seguro'].'</td>';
echo '</tr>';
}
}
?>
</table>
<a href="default.html">Volver a la pagina del formulario</a>