fhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhd dfhdfhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhdfh
| DIR:/home/u1105814/www/cms_lgc/modul/mod_simulasi/ |
| Current File : /home/u1105814/www/cms_lgc/modul/mod_simulasi/simulasi.php |
<script LANGUAGE="JavaScript">
<!--
function confirmSubmit(ttt) {
var msg;
msg= "Anda yakin akan menghapus kota " + ttt + " dari daftar pengiriman?";
var agree=confirm(msg);
if (agree)
return true ;
else
return false ;
}
// -->
</script>
<?php
$module=$_GET['module'];
$aksi="modul/mod_ongkoskirim/aksi_ongkoskirim.php";
switch($_GET['act']){
// Tampil Ongkos Kirim
default:
echo "
<section class='content'>
<div class='container-fluid'>
<div class='row'>
<div class='col-12'>
<div class='card'>
<div class='card-header'>
<h3 class='card-title'>$module</h3>
</div>
<div class='card-body'>
<table id='example1' class='table table-bordered table-striped'>
<thead>
<tr>
<th>ID Mitra</th>
<th>Nama Mitra</th>
<th>Rate</th>
<th>Biaya Asuransi</th>
<th>Biaya Administrasi</th>
</tr>
</thead>
<tbody>";
$tampil=mysqli_query($connect,"SELECT * FROM simulasi");
$no=1;
while ($r=mysqli_fetch_array($tampil)){
$id_mitra = $r['id_mitra'];
$nama_mitra = $r['nama_mitra'];
$biaya_asuransi = $r['biaya_asuransi'];
$biaya_administrasi = $r['biaya_administrasi'];
$rate = $r['rate'];
echo "
<tr>
<td>Trident</td>
<td>Internet
Explorer 4.0
</td>
<td>Win 95+</td>
<td> 4</td>
<td> 4</td>
</tr>";
}
echo "
</table>
</div>
</div>
</div>
</div>
</div>
</section>";
break;
}
?>
|