| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function connect() { |
||
| 13 | |||
| 14 | $this->conn = null; |
||
| 15 | |||
| 16 | try { |
||
| 17 | |||
| 18 | $this->conn = new PDO("mysql:host=" . $this->host . ";dbname=" . $this->db_name, $this->username, $this->password); |
||
| 19 | |||
| 20 | } catch (PDOException $exception) { |
||
| 21 | |||
| 22 | echo "Connection error: " . $exception->getMessage(); |
||
| 23 | |||
| 24 | } |
||
| 25 | |||
| 26 | return $this->conn; |
||
| 27 | |||
| 33 |