error_reporting(E_ERROR | E_WARNING | E_PARSE); ini_set('display_errors',1); ini_set('set_time_limit',60); ini_set('max_execution_time',60); date_default_timezone_set("Europe/London"); session_start(); require_once("includes/dbconn.php"); db_open(); /* GET TRUST STATUS * If user has already expressed a preference (cookie stored), then we don't ask them again if they * want to trust us. In future, they have to explicitly request to start the trust process (or manually trust) */ $userNoTrust = false; if (isset($_COOKIE["WHSE_NO_TRUST"])) $userNoTrust = true; ?>