Stacey requires PHP/5.0 or higher.
You are currently running PHP/'.phpversion().'.
You should contact your host to see if they can upgrade your version of PHP.
'); } else { error_reporting(0); # require helpers class so we can use rglob require_once './app/helpers.inc.php'; # include any php files which sit in the app folder foreach(Helpers::rglob('./app/**.inc.php') as $include) include_once $include; # start the app new Stacey($_GET); } ?>