I have a question. I have such database (mysql):
----------------------
| id | name | letter |
----------------------
| 1 | John | J |
| 2 | Joe | J |
| 3 | Jimi | J |
| 4 | Kci | K |
| 5 | Key | K |
| 6 | Alan | A |
| 7 | Alex | A |
I would like to sort the database in such way (using PHP):
<ul>
<li>Letter: J:
<li>John</li>
<li>Joe</li>
<li>Jimi</li>
</li>
<li>Letter: K:
<li>Kci</li>
<li>Key</li>
</li>
<li>Letter: A:
<li>Alan</li>
<li>Alex</li>
</li>
</ul>
Any ideas ? Many thanks!