Skip to content

Instantly share code, notes, and snippets.

View carloscastilloc2o's full-sized avatar

Carlos Castillo carloscastilloc2o

  • C2O
  • UK
View GitHub Profile
@carloscastilloc2o
carloscastilloc2o / php_array_table.php
Created January 12, 2018 10:31 — forked from jasondavis/php_array_table.php
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>";
}