[Solved] PHP output array as an HTML table
Try something like this: $data = //your array $html = “<table>”; foreach($data as $row) { $html .= “<tr>”; foreach ($row as $cell) { $html .= “<td>” . $cell . “</td>”; } $html .= “</tr>”; } $html .= “</table>”; Your question is extremenly vague so this is a vague answer, but you should get the general … Read more