26 lines
684 B
PHP
26 lines
684 B
PHP
<?php
|
|
class Database {
|
|
private $host = 'localhost';
|
|
private $database = 'playground';
|
|
private $username = 'root';
|
|
private $password = '';
|
|
private $conn;
|
|
|
|
public function connect() {
|
|
$this->conn = null;
|
|
|
|
try {
|
|
$this->conn = new PDO(
|
|
"mysql:host=" . $this->host . ";dbname=" . $this->database,
|
|
$this->username,
|
|
$this->password
|
|
);
|
|
$this->conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
} catch(PDOException $e) {
|
|
echo "Connection error: " . $e->getMessage();
|
|
}
|
|
|
|
return $this->conn;
|
|
}
|
|
}
|
|
?>
|