Store in GIT

This commit is contained in:
2026-06-17 15:42:16 +02:00
parent 9950ec87ac
commit 90f27d4516
47 changed files with 19559 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
require("../../inc/connect.php");
$project = $_POST['project'];
$code = $_POST['code'];
$stmt = $mysqli->prepare("UPDATE `project` SET `code`=? WHERE `id`=?");
$stmt->bind_param("ii", $code, $project);
$stmt->execute();
$stmt->close();
header("Location: /ptf-admin/add?success=true");
?>