Skip to content

Instantly share code, notes, and snippets.

View Sergeo1989's full-sized avatar

Idriss Sergio Nokam Talom Sergeo1989

View GitHub Profile
@jasondavis
jasondavis / php_array_table.php
Created June 30, 2016 07:15
PHP Array to HTML Table
<?php
function html_table($data = array())
{
$rows = array();
foreach ($data as $row) {
$cells = array();
foreach ($row as $cell) {
$cells[] = "<td>{$cell}</td>";
}