lib forgotten

This commit is contained in:
2024-09-27 15:23:28 +02:00
parent 6b3742c746
commit b277c23ce8
5 changed files with 403 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?
//phpinfo();
$servername = "db";
$username = 'kalskeborec';
$password = 'Kalskeborec1!23$';
$db = 'kalskeborec';
// Create connection
$conn = new mysqli($servername, $username, $password, $db);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
//echo "Connected successfully";
?>