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.
ConsEco/Sources/API/config/Database.php

22 lines
626 B

<?php
class Database {
private $host = 'localhost';
private $db_name = 'testAPI';
private $username = 'viastolfi';
private $password = 'MhhLeCaca1!';
private $conn;
public function connect(){
$this->conn = null;
try{
$this->conn = new PDO('mysql:host='.$this->host.';dbname='.$this->db_name, $this->username, $this->password);
$this->conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch(PDOException $e){
echo 'Connection Error :'.$e->getMessage();
}
return $this->conn;
}
}
?>