add files and folders

This commit is contained in:
2026-06-10 17:28:32 +07:00
parent 52f4cf86ab
commit 61f4fb2e71
80 changed files with 17551 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
require_once 'php/koneksi.php';
try {
$pdo->exec("ALTER TABLE rumah_ibadah_points ADD COLUMN IF NOT EXISTS jenis VARCHAR(30) NOT NULL DEFAULT 'Lainnya' AFTER nama");
$pdo->exec("ALTER TABLE rumah_ibadah_points ADD COLUMN IF NOT EXISTS kontak VARCHAR(120) NULL AFTER jenis");
echo "Columns added successfully.\n";
} catch (PDOException $e) {
echo "Failed to add columns: " . $e->getMessage() . "\n";
}