Struktur ulang: memindahkan sistem ke folder public untuk Nginx

This commit is contained in:
atuy
2026-06-26 17:48:01 +07:00
parent f6ff2d5d9d
commit f015774d4e
3283 changed files with 0 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
<?php
//open form
echo form_open(base_url('tkj'),' class="form-horizontal"');
?>
<p>
<a href="<?php echo base_url('dashboard') ?>" class="btn btn-secondary" data-dismiss="modal"><i class="fa fa-times"></i> Kembali</a>
</p>
<?php
//panggil form tambah
//include('tambah.php');
//closing form
echo form_close();
?>
<table class="table table-bordered table-striped table-sm" id="example1">
<thead>
<tr>
<th width="5%">NO.</th>
<th width="8%">NO. PEND</th>
<th width="20%">NAMA LENGKAP</th>
<th width="15%">TEMPAT/TGL. LAHIR</th>
<th width="10%">AGAMA</th>
<th width="20%">SEKOLAH ASAL</th>
<th width="25%">PROG. KEAHLIAN DIMINATI</th>
<th width="10%">GELOMBANG</th>
<th width="10%">NO. HP CASIS</th>
<th width="10%">NO. HP AYAH</th>
<th width="10%">NO. HP IBU</th>
</tr>
</thead>
<tbody>
<?php foreach ($tkj as $key => $tkj) { ?>
<tr>
<td><?php echo $key+1; ?></td>
<td><b><?php echo $tkj->no_pendaftaran ?></b>
<br><small><?php echo date('d-m-Y', strtotime($tkj->tgl_trans)) ?></small>
</td>
<td><?php echo $tkj->nama_lengkap ?>
<br><small><?php echo $tkj->jkelamin ?></small>
</td>
<td><?php echo $tkj->tempat_lahir ?>, <?php echo date('d-m-Y', strtotime($tkj->tgl_lahir)) ?></td>
<td><?php echo $tkj->agama ?></td>
<td><?php echo $tkj->sekolah_asal ?></td>
<td><?php echo $tkj->kompetensi ?></td>
<td><?php echo $tkj->gelombang ?></td>
<td><?php echo $tkj->no_hp ?></td>
<td><?php echo $tkj->tlp_ayah ?></td>
<td><?php echo $tkj->tlp_ibu ?></td>
</tr>
<?php } ?>
</tbody>
</table>