add rssa apps to git

This commit is contained in:
ryan
2026-06-04 09:16:51 +07:00
commit b40fd24711
6383 changed files with 1139152 additions and 0 deletions
@@ -0,0 +1,15 @@
<?php
header("Content-Type: application/json; charset=UTF-8");
include "./koneksi.php";
$obj=$_POST['id'];
// $objs=$_POST['akhir'];
// $conn = new mysqli("myServer", "myUser", "myPassword", "Northwind");
$stmt = $open->prepare("UPDATE * FROM datapasien SET announcer='' WHERE id_pasien='$obj'");
$stmt->execute();
$result = $stmt->get_result();
$outp = $result->fetch_all(MYSQLI_ASSOC);
echo json_encode($outp);
?>