ok
Direktori : /home2/selectio/public_html/tnpsctestbatch.com/admin/config/ |
Current File : /home2/selectio/public_html/tnpsctestbatch.com/admin/config/config.php |
<?php ini_set('error_reporting', E_ALL); date_default_timezone_set('Asia/Kolkata'); $dbhost = 'localhost'; $dbname = 'selectio_exam_prepares_live'; $dbuser = 'selectio_exam_prepares_live'; $dbpass = 'selectio_exam_prepares_live'; try { $pdo = new PDO("mysql:host={$dbhost};dbname={$dbname}", $dbuser, $dbpass); $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $pdo->exec("set names utf8mb4"); } catch( PDOException $exception ) { echo "Connection error :" . $exception->getMessage(); header("location: db-connection-error.php"); }