Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Php

Visibility

unlisted

Author

legacy-anonymous

Created

2020-01-03T11:14:41Z

Updated

2020-01-03T11:14:41Z

<section class="content-header">
    <h1>Izin<small>Pegawai</small></h1>
    <ol class="breadcrumb">
        <li><a href="home-admin.php"><i class="fa fa-dashboard"></i>Dashboard</a></li>
        <li class="active">Izin Pegawai</li>
    </ol>
</section>
<?php
	include "dist/koneksi.php";
	$tampilUser=mysql_query("SELECT * FROM 	telat WHERE persetujuan='' ORDER BY id_telat");
?>
<section class="content">
    <div class="row">
        <div class="col-md-12">
			<div class="box box-primary"></div>
				<div class="box-body">
					<table id="example1" class="table table-bordered table-striped">
						<thead>
							<tr>
								<th>No. telat</th>
								<th>Divisi</th>
								<th>Jenis Izin</th>
								<th>Tanggal Izin</th>
								<th>Jam Izin</th>
								<th>Lama Izin</th>
								<th>Alasan Izin</th>
								<th>Kegiatan Yang Ditinggalkan</th>
								<th>persetujuan</th>
								<th>Action</th>
							</tr>
						</thead>
						<tbody>
						<?php
							while($user=mysql_fetch_array($tampilUser)){
						?>	
							<tr>
								<td><?php echo $user['id_telat'];?></td>
								<td><?php echo $user['divisi'];?></td>
								<td><?php echo $user['jenis_izin'];?></td>
								<td><?php echo $user['tanggal'];?></td>
								<td><?php echo $user['jam_izin'];?></td>
								<td><?php echo $user['lama_izin'];?></td>
								<td><?php echo $user['alasan_izin'];?></td>
								<td><?php echo $user['keg_kantor'];?></td>
								<td><?php echo $user['persetujuan'];?></td>
								<td class="tools"><a href="home-hrd.php?page=form-approval-izin&id_telat=<?=$user['id_telat'];?>&nip=<?=$user['nip'];?>&lama_izin=<?=$user['lama_izin'];?>&jenis_izin=<?=$user['jenis_izin'];?>&title="approval"><i class="fa fa-check"></i></a></td>
							</tr>
						<?php
							}
						?>
						</tbody>
					</table>
				</div>
			</div>
        </div>
</section>
<script>
  $(function () {
    $("#example1").DataTable();
    $('#example2').DataTable({
      "paging": true,
      "lengthChange": false,
      "searching": false,
      "ordering": true,
      "info": true,
      "autoWidth": false
    });
  });
</script>
INFO