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.
dafl_music/Sources/php_script/script/db.php

11 lines
347 B

<?php
$dns = 'mysql:host='.CODEFIRST_CLIENTDRONE_ENV_INNONDB_HOST.';dbname='.CODEFIRST_CLIENTDRONE_ENV_INNODB_DATABASE;
$user = CODEFIRST_CLIENTDRONE_ENV_INNODB_USER;
$password = CODEFIRST_CLIENTDRONE_ENV_INNODB_PASSWORD;
try{
$db = new PDO ($dns, $user, $password);
}catch( PDOException $e){
$error = $e->getMessage();
echo $error;
}