add silaras to git repo

This commit is contained in:
ryan
2026-05-13 08:55:17 +07:00
commit 780f120c77
123 changed files with 11777 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<h3>Daftar Pasien</h3>
<?php if (!empty($pasien)): ?>
<table border="1" cellpadding="8">
<tr>
<th>No</th>
<th>RM</th>
<th>Nama</th>
<th>Tgl Lahir</th>
<th>Gender</th>
<th>Alamat</th>
</tr>
<?php $no=1; foreach($pasien as $p): ?>
<tr>
<td><?= $no++ ?></td>
<td><?= $p['rm'] ?></td>
<td><?= $p['nama'] ?></td>
<td><?= $p['tgl_lahir'] ?></td>
<td><?= $p['gender'] ?></td>
<td><?= $p['alamat'] ?></td>
</tr>
<?php endforeach; ?>
</table>
<?php else: ?>
<p>Belum ada data</p>
<?php endif; ?>