Updating file list to remove unused debug files

This commit is contained in:
2026-01-26 13:39:56 -08:00
parent 40aa44fd7a
commit fa6a5c8d86
3 changed files with 1 additions and 14 deletions

View File

@@ -1 +0,0 @@
<?php phpinfo(); ?>

View File

@@ -18,7 +18,7 @@ SET time_zone = "+00:00";
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `taskmanage`
-- Database: `tinyTask`
--
-- --------------------------------------------------------

View File

@@ -1,12 +0,0 @@
<?php
$data = json_decode(file_get_contents('php://input'), true);
$id = intval($data['id']);
$name = trim($data['name']);
if ($id && $name) {
$pdo = new PDO('sqlite:data.db');
$stmt = $pdo->prepare('UPDATE projects SET name = ? WHERE id = ?');
echo json_encode(['success' => $stmt->execute([$name, $id])]);
} else {
echo json_encode(['success' => false]);
}