The mysql table looks like: ================================ Prop1 Prop2 Prop3 Prop4 Prop5 Name1 11 12 13 14 15 Name2 21 22 23 24 25 Name3 31 32 33 34 35 ================================ I want to display it like: ================================ Name1 Name2 Name3 Prop1 11 21 31 Prop2 12 22 32 Prop3 13 Prop4 14 Prop5 15 ......... ================================ Any good ideas? Thanks
one way of doing this one is to configure it in CSS i did this one by putting the records in an unordered list <li> <ul>records</ul> <ul>records</ul> <li> HTML: you will be dealing more on CSS with this one. h-alignment, padding, etc... etc...