I need a 4x4 table in a while loop. I have been doing standard data display (per row) for quite some time. Now I need something that looks like this:
data_a1 data_b1 data_c1 data_d1
data_a2 data_b2 data_c2 data_d2
data_a3 data_b3 data_c3 data_d3
data_a4 data_b4 data_c4 data_d4
Can someone provide a snippet?
Please assume I'm familiar with if/while, etc. If this is an array, I'm not too familiar but I learn extremely quickly by looking at existing (sample) code.
Thanks Much!