added php insert for tagok table

This commit is contained in:
szabomarton
2024-12-04 08:50:06 +01:00
parent 26a3ca9542
commit 900adee579
3 changed files with 68 additions and 14 deletions

View File

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