18 lines
304 B
PHP
18 lines
304 B
PHP
|
<?php
|
||
|
|
||
|
class DataBase{
|
||
|
|
||
|
/* ATTRIBUTS */
|
||
|
private $host;
|
||
|
private $dbname;
|
||
|
private $username;
|
||
|
private $password;
|
||
|
|
||
|
private $connection;
|
||
|
|
||
|
public function __construct($host, $dbname, $username, $password){
|
||
|
this->connection = new PDO("mysql:host=$host;dbname=$dbname", $username, $password);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|