
<!-- CEGAH BY PASS PERHALAMAN -->
<?php
include('../ro-databases/koneksi.php');
include('../ro-query/ro-semua-siswa.php');

?>
<!-- CEGAH BY PASS PERHALAMAN -->
<?php include('ro-session-nobypass.php'); ?>

<div class="row">
<div class="col-lg-12">
<h2 class="page-header">Data Semua siswa</h2>
<div class="panel panel-default">
<div class="panel-heading">
Data Semua siswa yang sudah mendaftar</div>
<!-- /.panel-heading -->
<div class="panel-body">
<table width="100%" class="table table-striped table-bordered table-hover" id="dataTables-example">
<thead>
<tr>
<th colspan="2">JUMLAH PENDAFTAR</th>
<th><?php echo $jumlah_siswa; ?></th>
<th><a href="afadaxasadxaxasagrysf" target=_"blank"><i class="fa fa-print fa-fw" alt="print" title="Print"></i></a></th>                                    
</tr>
<tr>
<th>No</th>
<th>Nama siswa</th>
<th>NISN</th>
<th>Aksi</th>
</tr>
</thead>
<tbody>
<?php //Perulangan 
$no=$awal+1;
while($data=mysqli_fetch_array($query)) {                     
                            
    ?>
<tr class="odd gradeX">
<td><?php echo $no;?></td>
<td><?php echo $data['nama_siswa'];?></td>
<td><?php echo $data['nisn'];?></td>
<td>
<a href="detail-<?php echo $data['nisn']?>"><i  class="fa fa-eye fa-fw" alt="detail" title="View Detail"></i></a>
<a href="nilai-<?php echo $data['nisn']?>" target="_blank"><i  class="fa fa-book fa-fw" alt="nilai" title="Lihat Nilai"></i></a>
<a href="edit-<?php echo $data['nisn']?>" target="_blank"><i class="fa fa-edit fa-fw" alt="verifikasi" title="Verifikasi"></i></a>
</td>
</tr>
 <?php $no+=1;  } ?>
</tbody>
</table>
</div><div class="panel-footer">
Siswa ROOT93
</div>
</div>
</div>
</div>

       
            <!-- /.row -->
