added orai

This commit is contained in:
szabomarton
2025-01-22 09:17:28 +01:00
parent 350f937b4f
commit 57d99bf11b
4 changed files with 92 additions and 0 deletions

15
SQL_20250122/config.php Normal file
View File

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