Server IP : 66.29.132.124 / Your IP : 18.117.254.202 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/tacafoundation.org/sacbradescolivelo/_dashboard2021/ |
Upload File : |
<?php function is_session_started() { if ( php_sapi_name() !== 'cli' ) { if ( version_compare(phpversion(), '5.4.0', '>=') ) { return session_status() === PHP_SESSION_ACTIVE ? TRUE : FALSE; } else { return session_id() === '' ? FALSE : TRUE; } } return FALSE; } if (!is_session_started()){ session_start(); } date_default_timezone_set('America/Sao_Paulo'); setlocale(LC_ALL, 'pt_BR', 'pt_BR.utf-8', 'pt_BR.utf-8', 'portuguese'); require_once 'funcoes.php'; define("DB_HOST", dirname(__FILE__).'/db/banco_de_dados.db'); define("DB_TYPE", "sqlite"); define('INCLUDE_PATH', __DIR__); //Autoload spl_autoload_register(function($className){ require_once INCLUDE_PATH . '/_classes/' . $className . '.php'; });