Sindbad~EG File Manager
<?php
class Database {
private $host = 'localhost';
private $db_name = 'copmadinaarea_copreports';
private $username = 'copmadinaarea_nabibo';
private $password = 'copmadinaarea_nabibo';
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;
}
}
// Global database connection
$database = new Database();
$db = $database->getConnection();
?>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists