HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/kms.komma.pro/wwwroot/config/connect.php
<?php
/**
 * connect.php
 * Created by Komma Mediadesign.
 * Author: mike
 * Date: 3/19/13
 */

// Define our settings
define('SERVER', 'YDAWBH119');
define('USER', 'MikeVanDerSanden');
define('PASS', 'Oh&d6vX3#d*ikS!');
define('DB', 'kms2');

// Create a database connection
try{
    $pdo = new PDO("mysql:host=".SERVER.";dbname=".DB, USER, PASS);
    $pdo->exec("set names utf8");
}
catch (PDOException $e) {
    echo $e->getMessage();
    exit();
}