Files
OpenWeddingApp/services/www/config/database_example.php
2026-01-31 18:06:18 +01:00

25 lines
678 B
PHP

<?php
class Database{
private $host = "localhost";
private $db_name = "your_db_name";
private $username = "your_db_user";
private $password = "your_db_password";
public $conn;
// get the database connection
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");
}catch(PDOException $exception){
echo "Connection error: " . $exception->getMessage();
}
return $this->conn;
}
}
?>