Skip to content

Instantly share code, notes, and snippets.

View micflan's full-sized avatar

Michael Flanagan micflan

View GitHub Profile
@micflan
micflan / map.geojson
Created August 13, 2013 16:01
via:geojson.io
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@micflan
micflan / index.php
Created April 4, 2013 16:37
super simple php file loader
<?php
// URL to array
$query = $_SERVER['PHP_SELF'];
$query = str_replace('/index.php', '', $query);
$path = explode( '/', $query );
// Build current page name from array
$page = '';
foreach ($path as $key) {