forgot semicolon

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-17 01:41:18 +01:00
parent 38bfebe2a6
commit 3d2dd0ffb8
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
$password = "pixel";
$db_name = "pixeltube_db";
$conn = new mysqli($server, $username, $password, $db_name)
$conn = new mysqli($server, $username, $password, $db_name);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);