File Manager

Path: /home/heznutpr/log.heznutprivate.com/dashboard/admin/

Viewing File: dbconfig.phpg

<?php

$DB_host = "localhost";
$DB_user = "heznutpr_bcb";
$DB_pass = "JfR5pGedK70p";
$DB_name = "heznutpr_bcb";


try
{
	$DB_con = new PDO("mysql:host={$DB_host};dbname={$DB_name}",$DB_user,$DB_pass);
	$DB_con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch(PDOException $e)
{
	echo $e->getMessage();
}


?>