- Report: Added printable reports for all categories. - Dashboard: Fixed broken links and implemented gender balance filtering. - Logic: Auto-integration of Arrivals and Births into Resident/KK data. - Fix: Solved deletion popup bug in Birth Data. - Feature: Added Full KK History view. - Feature: Implemented Dynamic Village Profile for letter templates.
25 lines
979 B
PHP
25 lines
979 B
PHP
<?php
|
|
if(isset($_GET['kode'])){
|
|
$sql_hapus = "DELETE FROM tb_lahir WHERE id_lahir='".$_GET['kode']."'";
|
|
$query_hapus = mysqli_query($koneksi, $sql_hapus);
|
|
|
|
if ($query_hapus) {
|
|
echo "<script>
|
|
Swal.fire({title: 'Hapus Data Berhasil',text: '',icon: 'success',confirmButtonText: 'OK'
|
|
}).then((result) => {
|
|
if (result.value) {
|
|
window.location = 'index.php?page=data-lahir';
|
|
}
|
|
})</script>";
|
|
}else{
|
|
echo "<script>
|
|
Swal.fire({title: 'Hapus Data Gagal',text: '".mysqli_error($koneksi)."',icon: 'error',confirmButtonText: 'OK'
|
|
}).then((result) => {
|
|
if (result.value) {
|
|
window.location = 'index.php?page=data-lahir';
|
|
}
|
|
})</script>";
|
|
}
|
|
}
|
|
|