OK... so normally I have the script
<tr>
<td width='200'><?echo "<a href=\"Sangdata.php?Titel=$titel\">$titel</a>";?></td>
<td width= '60'><?echo $row['Stil'];?></td>
<td width= '70'><?echo $row['Hastighed'];?></td>
<td width='120'><?echo $row['Kvalitet'];?></td>
</tr>
between the {} of the WHILE command.
You have put this
$array[$row['first_letter']][] = $row['Titel'];
between the {} of the WHILE..
I can see that this script lists the titles as it should, but how do I get my table correct listed.
I mean how do I get my table shown correctly as above, in your $array[$row['first_letter']][] = $row['Titel']; script... ?