Your IP : 52.15.49.90
<?php
date_default_timezone_set('Africa/Lagos');
$today = date('ymd');
$dd = date('ymd');
$mm = date('ym');
$yy = date('y');
$ww = date('yW');
$yyyy = date('Y');
$lm = $mm-1;
$lw = $ww-1;
define("CTIME",time());
define("BFNPHONE","");
////change this item to and id number and not name
define("DB_SERVER", "localhost");
define("DB_USER", "lentoinv_relox");//enter your database username
define("DB_PASS", "VdTOWGejh");//databse password
//define("DB_USER", "lentoinv_fination");//enter your database username
//define("DB_PASS", "@#fination"); //databse password
define("DB_NAME", "lentoinv_covis123");//database name
define("DB_NAME2", "lentoinv_coviseco123");//database name
define("DB_NAME3", "lentoinv_relox123");//database name
define ("STATUSBETA", sha1(56));
define ("STATUSALPHA", sha1(65));
define ("MATRIX", 2);
/**
* Special Names and Level Constants - the admin
* page will only be accessible to the user with
* the admin name and also to those users at the
* admin user level. Feel free to change the names
* and level constants as you see fit, you may
* also add additional level specifications.
* Levels must be digits between 0-9.
*/
define("TODAY", date("Y-m-d"));
/**
* Timeout Constants - these constants refer to
* the maximum amount of time (in minutes) after
* their last page fresh that a user and guest
* are still considered active visitors.
*/
define("USER_TIMEOUT", 10);
define("ADMIN_TIMEOUT", 5);
/**
* Cookie Constants - these are the parameters
* to the setcookie function call, change them
* if necessary to fit your website. If you need
* help, visit www.php.net for more info.
* <http://www.php.net/manual/en/function.setcookie.php>
*/
define("COOKIE_EXPIRE", 60*60*24*100); //100 days by default
define("COOKIE_PATH", "/"); //Avaible in whole domain
/**
* Email Constants - these specify what goes in
* the from field in the emails that the script
* sends to users, and whether to send a
* welcome email to newly registered users.
*/
define("URL", "https://www.covisclub.com/");
define("EMAIL_FROM_NAME", "Covis Club");
define("EMAIL_FROM_ADDR", "no_reply@covisclub.com");
define("ADMIN_EMAIL", "admin@covisclub.com");
define("EMAIL_WELCOME", true);//set this false if you do not want your users to receive a welcome Email after registration
$db = new mysqli(DB_SERVER, DB_USER, DB_PASS, DB_NAME);
$db2 = new mysqli(DB_SERVER, DB_USER, DB_PASS, DB_NAME2);
$db3 = new mysqli(DB_SERVER, DB_USER, DB_PASS, DB_NAME3);
$offset="+01:00";
$db->query("SET time_zone='".$offset."';");
?>