ok im making a log and the db_connect.php gives me this error
Fatal error: Failed opening required 'DB_connect.php' (include_path='') in /home/xero4/public_html/db_connect.php on line 2
can anyone help me plz thanks and heres the code for it
<?php
require_once ('DB_connect.php');
$db_engine = 'mysql';
$db_user = 'jester';
$db_pass = 'password';
$db_host = 'localhost';
$db_name = 'database';
$datasource = $db_engine.'://'.
$db_user.'xero4'.
$db_pass.'chaldo69'.
$db_host.'139.81.50.196'.
$db_name;
$db_object = DB::connect($datasource, TRUE);
if(DB::isError($db_object)) {
die($db_object->getMessage());
}
$db_object->setFetchMode(DB_FETCHMODE_ASSOC);
include('check_login.php');
?>