Copy this code and paste it in your HTML
/**
* check to see if we are local or live
*/
if (stristr($_SERVER['HTTP_HOST'], 'localhost') ||
stristr($_SERVER['HTTP_HOST'], 'work') ||
stristr($_SERVER['HTTP_HOST'], 'machost')) { define('LOCAL', true);
} else { define('LOCAL', false);
}