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>";
}
@josephrace
josephrace / .gitlab-ci.yml
Created May 18, 2017 17:44
Configuration file for create-react-app on GitLab Pages
image: node:7.9.0 # change to match your node version
cache:
paths:
- node_modules/
before_script:
- npm install
test: