Version 2

This commit is contained in:
2026-01-02 21:08:58 +01:00
commit 3c51bf0048
598 changed files with 31242 additions and 0 deletions

9
files/ezine_db.inc.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
require "ezine.conf.php";
$conn = new mysqli($host, $login, $password, $base);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>