I'm attempting to add a couple of columns to a multidimensional PHP array inside a loop. Inside the loop I currently have this:
$html[]['strongsNum'] = $strongsCode;
$html[]['wordNum'] = $wordNumber;
However, because I'm not setting the index manually, it creates two separate entries for the two. How can I make it add the two columns to the one entry / row of the array?