[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
tracer
/
application
/
views
/
admin
/
[
Home
]
File: bg_mahasiswa.php
<script> $(document).ready(function(){ $("#angkatan").change(function(){ loadprodi() }); }); </script> <script type="text/javascript"> function loadprodi() { var angkatan=$("#angkatan").val(); $.ajax({ url:"<?php echo base_url();?>admin/mahasiswaDetail", data:"angkatan=" + angkatan , success: function(html) { $("#tampil").html(html); } }); } $(function(){ loadprodi(); }) </script> <a href="<?php echo base_url();?>admin/tambah_mahasiswa" class="btn btn-sm btn-primary"><i class="ace-icon glyphicon glyphicon-plus"></i> Tambah Mahasiswa</a> <a href="<?php echo base_url();?>admin/mahasiswaExcel" class="btn btn-sm btn-inverse"><i class="fa fa-file-excel-o" aria-hidden="true"></i> Excel</a> <a href="<?php echo base_url();?>admin/uploadExel" class="btn btn-sm btn-warning"><i class="ace-icon fa fa-arrow-circle-o-down"></i> Import</a> <th colspan="2"><b>Angkatan : </b> <select name="angkatan" id="angkatan"> <?php foreach ($angkatan->result() as $key ) { $pilih = ''; if($key->angkatan==$this->session->userdata("angkatan")) $pilih="selected='selected'"; ?> <option value="<?php echo $key->angkatan;?>"<?php echo $pilih; ?>><?php echo $key->angkatan;?></option> <?php } ?> </select> </th> <div id="tampil"> <table class="table table-striped table-bordered data" > <tr> <th align="center">No</th> <th align="center">NIM</th> <th align="center">Nama Mahasiswa</th> <th align="center">Angkatan</th> <th align="center">Jurusan</th> <th align="center">Kode Jurusan</th> <th align="center">Kelas</th> <th align="center">Status</th> <th align="center">Edit</th> <th align="center">Hapus</th> </tr> </table> </div>