Skip to content

Instantly share code, notes, and snippets.

@luxifer
Created March 28, 2012 15:13
Show Gist options
  • Save luxifer/2227061 to your computer and use it in GitHub Desktop.
Save luxifer/2227061 to your computer and use it in GitHub Desktop.
php controller in 14 lines
<?php
if (!empty($_GET['p']))
{
if (is_file($_GET['p'].".php"))
{
include($_GET['p'] . ".php");
}
else
{
echo 'error';
}
}
else
{
include("default.php");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment