This commit is contained in:
2026-02-17 14:56:23 +01:00
commit 68f7a95fdf
695 changed files with 154611 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
$user = $_POST['user'];
$pdo = new PDO('mysql:host=localhost;dbname=web4_intranet;charset=utf8', "web4_intranet", "WewJedjuAbEynk3");
$GLOBALS["pdo_conn"] = $pdo;
$noPublish = "UPDATE token_contact SET token_contact.in_system=0 WHERE token_contact.contact_id=$user";
$stmt = $pdo->prepare($noPublish);
$stmt->execute();
$count = $stmt->fetchColumn();
?>