File "DBConnection.php"
Full Path: /home/leadltht/fastlinkinternet.com/administrator/data-provider/classes/DBConnection.php
File size: 571 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
class DBConnection {
protected $conn;
public function __construct() {
$this->conn = new mysqli('server329', 'leadltht_prazey1982', 'prazey1982123456', 'leadltht_fastlinkinternet');
if ($this->conn->connect_error) {
die("Connection failed: " . $this->conn->connect_error);
}
}
public function getConnection() {
return $this->conn;
}
public function __destruct() {
if ($this->conn && $this->conn->ping()) {
$this->conn->close();
}
}
}
?>