Organize scattered PHP files into scripts/ and tests/ directories

This commit is contained in:
2025-11-12 08:34:20 +01:00
parent 0622f40004
commit 8f072292c1
28 changed files with 10 additions and 10 deletions

7
scripts/check_items.php Executable file
View File

@@ -0,0 +1,7 @@
<?php
require '../vendor/autoload.php';
require '../config.php';
= App\Database\Database::getInstance();
= ->query('SELECT id, name FROM items');
= ->fetchAll(PDO::FETCH_ASSOC);
print_r();