Hi, I'm trying to combine 3 arrays into one, but it can only be done with two arrays.
Array ( [0] => ITEM1 [1] => ITEM2 [2] => )
Array ( [0] => 2 [1] => 4 [2] => )
Array ( [0] => 50 [1] => 400 [2] => )
How could I combine them so that the first array was the key and be able to extract them in a table in the following way?
<table border='1'>
<tr>
<td>Concepto</td>
<td>Unidades</td>
<td>Precio</td>
</tr>
<tr>
<td>ITEM 1</td>
<td>2</td>
<td>50</td>
</tr>
<tr>
<td>ITEM 2</td>
<td>4</td>
<td>400</td>
</tr>
</table>