-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdatabase.php
More file actions
36 lines (31 loc) · 859 Bytes
/
Copy pathdatabase.php
File metadata and controls
36 lines (31 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
class database
{
private $host;
private $db_name;
private $username;
private $password;
public $conn;
public function __construct($host, $db_name, $username, $password)
{
$this->host = $host;
$this->db_name = $db_name;
$this->username = $username;
$this->password = $password;
}
public function getConnection()
{
$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 $exception) {
echo "Connection error: " . $exception->getMessage();
}
return $this->conn;
}
}