Your IP : 3.15.202.169
<?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;
////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_NAME", "lentoinv_relox");//database name
define ("MATRIX", 3);
define ("CURRENCY", '#');
define ("REGFEE", '150000');
define("CTIME", time()) ;
/**
* 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 09
**/
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("BUSINESS_NAME", "Relox Properties Ltd");
define("URL", "reloxpropertiesltd.com/");
define("EMAIL_FROM_NAME", "Relox Properties Ltd");
define("EMAIL_FROM_ADDR", "admin@reloxpropertiesltd.com");
define("ADMIN_EMAIL", "#");
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, 'lentoinv_covis');
?>