Questa è la table:

Codice PHP:
<table>
<
thead>
<
tr>
<
td ROWSPAN='2'></td>
/* lascio una cella vuota  */

for ($y=0;$y<15;$y++)
    {
    
mysqli_data_seek($result3,($y));
    
$row_testata mysqli_fetch_row($result3);
    echo 
"<td  COLSPAN= '2' > $row_testata[1]</td>";
    }

</
tr>
</
thead>
</
table
Quindi,
1 vuota + 15 del for dovrebbe creare 16 celle, invece ne fa 17.