Prueba asi:
Código PHP:
echo "<table border = '0' cellspacing='15'>";
echo "<tr>";
echo "<td><b><u>Patente</u></b></td>";
echo "<td><b><u>Seguro</u> </b></td>";
echo "</tr> \n";
echo "</table>";
for ($i=0; $i<$num_filas; $i++) {
$row = mysql_fetch_array($resultado);
echo "<table border = '0' cellspacing='15'>";
echo "<tr> \n";
echo "<td>".$row["patente"]."</td>";
echo "<td>".$row["seguro"]."</td>";
echo "</tr> \n";
echo "</table>";
}