// function pre($var) // { // echo "
"; // print_r($var); // echo ""; // } // header("Location: instagram://user?username=mainline_bra"); // header("Location: https://www.instagram.com/mainline_bra/"); // die(); define('GFWEcms', true); define('ROOT', __DIR__); define('ENGINE', ROOT . '/engine'); @error_reporting(E_ALL ^ E_WARNING ^ E_DEPRECATED ^ E_NOTICE); @ini_set('error_reporting', E_ALL ^ E_WARNING ^ E_DEPRECATED ^ E_NOTICE); @ini_set('display_errors', true); @ini_set('html_errors', false); session_start(); $page = (isset($_GET['page']) ? $_GET['page'] : 'main'); function page($name) { $path = ROOT . '/pages/' . $name . '.php'; if (file_exists($path)) { include_once $path; } else { http_response_code(404); } } page($page);