You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
383 B
11 lines
383 B
<?php
|
|
$dns = 'mysql:host='.$_ENV["CODEFIRST_CLIENTDRONE_ENV_INNONDB_HOST"].';dbname='.$_ENV["CODEFIRST_CLIENTDRONE_ENV_INNODB_DATABASE"];
|
|
$user = $_ENV["CODEFIRST_CLIENTDRONE_ENV_INNODB_USER"];
|
|
$password = $_ENV["CODEFIRST_CLIENTDRONE_ENV_INNODB_PASSWORD"];
|
|
try{
|
|
$db = new PDO ($dns, $user, $password);
|
|
}catch( PDOException $e){
|
|
$error = $e->getMessage();
|
|
echo $error;
|
|
}
|