Update client_settings.php

This commit is contained in:
jakani24
2024-02-08 20:51:31 +01:00
parent 1c2ce0921d
commit fd0a1833c3

View File

@@ -103,6 +103,13 @@ function safe_settings(){
$stmt->execute();
$stmt->close();
}
if($_GET["update"]=="rtp_excluded"){
$id=htmlspecialchars($_GET["id"]);
$stmt = $conn->prepare("UPDATE rtp_excluded set path= ? WHERE id=$id");
$stmt->bind_param("s",$value);
$stmt->execute();
$stmt->close();
}
$conn->close();
}