[Solved] How do I displayed in the table this array, with for?


<table border="1"><?php
foreach ($ex['Product'] as $row) {
    echo '<tr>';
    echo '<td>'.$row['item_id'].'</td><td>'.$row['product_name'].'</td>';
    echo '</tr>';
}
?></table>

solved How do I displayed in the table this array, with for?