Connection.php 502 Bytes
Newer Older
Sasho Gjorgiev's avatar
Sasho Gjorgiev committed
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
<?php

namespace Database;

use PDO;

class Connection 
{
    const HOST = 'localhost';
    const DBNAME = 'ch_17';
    const USERNAME = 'root';
    const PASSWORD = '';

    protected $connection;


    public function __construct()
    {
        $this->connection = new PDO('mysql:host=' . self::HOST . ';dbname=' . self::DBNAME, self::USERNAME,self::PASSWORD);
    }

public function getConnection()
{
    return $this->connection;
}


public function destroy()
{
    $this->connection = null;
}


}