Webservices

This commit is contained in:
2026-01-31 18:01:24 +01:00
parent e1c752fcf8
commit 2d2fc24d71
35 changed files with 3531 additions and 0 deletions

1
services/www/config/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
database.php

View File

@@ -0,0 +1,25 @@
<?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;
}
}
?>