Have a list that I want to output in a exact order, like below:
name1 name5 name9
name2 name6 name10
name3 name7 name11
name4 name8 name12
I want to output it JUST like that, and NOT like this:
name1 name2 name3
name4........
and so on..
How could I do that.. could someone explain it so that I can understand..?