Hello Stackoverflow Community,
i have a MYSQL table like this:
+---------------------+
| id cid tid tte |
+---------------------+
| 1 11 33 580 |
| 2 44 33 581 |
| 3 55 44 582 |
| 4 77 44 583 |
+---------------------+
I would like to create a html table like this:
+----------------------+
| tid cid1 cid2 ... |
+----------------------+
| 33 580 581 ... |
| 44 582 583 ... |
+----------------------+
How is this possible? I googled few hours but i didn't found anything for my program.