1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-05 03:24:41 +00:00

import release v1.1.3

This commit is contained in:
Ryo Kanbayashi
2023-08-17 19:38:56 +09:00
parent 3f835cc697
commit f6417823af
71 changed files with 13028 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
require('../db.php');
if (isset($_POST['uniqid'])){
$postUniqid = $_POST['uniqid'];
try {
$pdo = new PDO('mysql:charset=UTF8;dbname='.DB_NAME.';host='.DB_HOST , DB_USER, DB_PASS);
// 削除クエリを実行
$deleteQuery = $pdo->prepare("DELETE FROM ueuse WHERE uniqid = :uniqid");
$deleteQuery->bindValue(':uniqid', $postUniqid, PDO::PARAM_STR);
$res = $deleteQuery->execute();
if ($res) {
echo json_encode(['success' => true]);
exit;
} else {
echo json_encode(['success' => false, 'error' => '削除に失敗しました。']);
exit;
}
} catch(PDOException $e) {
echo json_encode(['success' => false, 'error' => 'データベースエラー:' . $e->getMessage()]);
exit;
}
}
?>