Question

I have questions here… I wan the next statement to b in the next line in a dynamic text box… My text is extracted frm an array… So how can it b done? And I dunno how to loop the array so tat each element tat is extracted out will b the next statement of the previous statement… If I loop, the old one will b replaced by the newest one… Thanx in advance…

codes:
<!-- theName is the var name for the dynamic text box -->

//for (var i=0; i<tempArray.length; i++)
//{
theName = tempArray[0][0]+" “+tempArray[0][1]+” “+tempArray[0][2]+” "
+tempArray[1][0]+" “+tempArray[1][1]+” “+tempArray[1][2]+” "
+tempArray[2][0]+" “+tempArray[2][1]+” “+tempArray[2][2]+” "
+tempArray[3][0]+" “+tempArray[3][1]+” “+tempArray[3][2]+” "
+tempArray[4][0]+" “+tempArray[4][1]+” “+tempArray[4][2]+” "
+tempArray[5][0]+" “+tempArray[5][1]+” “+tempArray[5][2]+” "
+tempArray[6][0]+" “+tempArray[6][1]+” “+tempArray[6][2]+” "
+tempArray[7][0]+" “+tempArray[7][1]+” “+tempArray[7][2]+” "
+tempArray[8][0]+" “+tempArray[8][1]+” “+tempArray[8][2]+” "
+tempArray[9][0]+" “+tempArray[9][1]+” “+tempArray[9][2]+” "
+tempArray[10][0]+" “+tempArray[10][1]+” “+tempArray[10][2]+” "
+tempArray[11][0]+" “+tempArray[11][1]+” “+tempArray[11][2]+” "
+tempArray[12][0]+" “+tempArray[12][1]+” “+tempArray[12][2]+” "
+tempArray[13][0]+" “+tempArray[13][1]+” “+tempArray[13][2]+” "
+tempArray[14][0]+" “+tempArray[14][1]+” "+tempArray[14][2];
//}