Initial commit - clean and ready for Coolify

This commit is contained in:
noooviiieee
2026-06-11 10:16:53 +07:00
commit 19ebb84943
158 changed files with 9448 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
include 'koneksi.php';
$id = $_POST['id'];
$nama = $_POST['nama_masjid'];
$pic = $_POST['pic_masjid'];
$alamat = $_POST['alamat'];
$sql = "UPDATE masjid SET nama_masjid='$nama', pic_masjid='$pic', alamat='$alamat' WHERE id='$id'";
echo mysqli_query($conn, $sql) ? "Sukses" : "Gagal: " . mysqli_error($conn);
?>