"Mysql", // Database type: "Mysql", "Postgres", "Sqlserver", "Sqlite" or "Oracle" "user" => getenv("database.default.username"), // Database user name "pass" => getenv("database.default.password"), // Database password "host" => getenv("database.default.hostname"), // Database host "port" => "", // Database connection port (can be left empty for default) "db" => getenv("database.default.database"), // Database name "dsn" => "", // PHP DSN extra information. Set as `charset=utf8mb4` if you are using MySQL "pdoAttr" => array() // PHP PDO attributes array. See the PHP documentation for all options ); // This is included for the development and deploy environment used on the DataTables // server. You can delete this block - it just includes my own user/pass without making // them public! if ( is_file($_SERVER['DOCUMENT_ROOT']."/datatables/pdo.php") ) { include( $_SERVER['DOCUMENT_ROOT']."/datatables/pdo.php" ); } // /End development include