This commit is contained in:
szabomarton
2025-03-12 09:25:14 +01:00
parent a1826a08f4
commit aecc7f9351
12 changed files with 3556 additions and 0 deletions

15
20250312/config.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
$server = "localhost";
$user = "felhasznalo";
$pwd = "password";
$db = "mozi2";
$conn = new mysqli($server, $user, $pwd, $db);
if ($conn->connect_errno)
{
die("Nem sikerült a kapcsolat kiépítése: " . $conn->connect_error);
}
?>