Updated SQL File to remove dummy data.

This commit is contained in:
Garcia-Gomez
2026-01-26 13:02:02 -08:00
commit 40aa44fd7a
21 changed files with 1977 additions and 0 deletions

5
get_settings.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
require 'db.php';
$stmt = $pdo->query("SELECT title, icon_class, icon_color FROM settings LIMIT 1");
echo json_encode($stmt->fetch(PDO::FETCH_ASSOC));
?>