<?php
// Does "komma" appears in the host, we're on development
if(strpos($_SERVER['HTTP_HOST'],'komma') !== false)
{
define('ENVIRONMENT','development');
}
// Does "local" appears in the host, we're on local
else if(strpos($_SERVER['HTTP_HOST'],'local') !== false)
{
define('ENVIRONMENT','local');
}
// We must be at production
else
{
define('ENVIRONMENT','production');
}