22 lines
713 B
PHP
22 lines
713 B
PHP
<?php
|
|
// Konfigurasi Database untuk FTTH Planner
|
|
class Database {
|
|
private $host = "localhost";
|
|
private $db_name = "ftth_planner";
|
|
private $username = "root";
|
|
private $password = "";
|
|
public $conn;
|
|
|
|
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->exec("set names utf8");
|
|
$this->conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
} catch(PDOException $exception) {
|
|
echo "Connection error: " . $exception->getMessage();
|
|
}
|
|
return $this->conn;
|
|
}
|
|
}
|
|
?>
|