WT1CS1-CHH/Website/dbconfig.php

28 lines
658 B
PHP

<?php
class Database
{
private $host = "localhost";
private $db_name = "bsldb";
private $username = "WT1CS1usr";
private $password = "ibz4life-WT1CS1";
public $conn;
public function dbConnection()
{
$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;
}
}
?>