| .. | |||||
| arsip.php | |||||
| index.html |
| Server IP : 103.169.32.36 / Your IP : 216.73.217.108 Web Server : Apache System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : apache ( 48) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/dpmptsp/public_html/bundelPerizinan/page/ |
Upload File : |
<?php
//debug($obj);exit;
?>
<style type="text/css">
.dp{
padding-top:5px;
border-bottom:dashed 1px silver;
}
.zzzz{
list-style-type: none;
}
.fl{
width:25%;
display:inline-block;
}
</style>
<h3 style="text-align:center"><b>Data Bundel Arsip Perizinan</b></h3>
<div class="row">
<div class="col col_12_of_12">
<div class="head_title"><h2 style="font-size:16px;">Data Bundel</h2></div>
<ul class="zzzz">
<li class="dp">
<h5 class="fl">Bundel</h5>
:<b> <?php echo $obj->bundel->abiNamaBundel; ?></b>
</li>
<li class="dp">
<h5 class="fl">Tahun</h5>
:<b> <?php echo $obj->bundel->abiNoBundel; ?></b>
</li>
<li class="dp">
<h5 class="fl">Jenis Izin</h5>
:<b> <?php echo $obj->bundel->namaIzin; ?></b>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col col_12_of_12">
<div class="head_title"><h2 style="font-size:16px;">Data Arsip</h2></div>
<table class="table_green">
<thead>
<tr>
<th width="20px">No.</th>
<th>Pemilik</th>
<th>Perusahaan</th>
<th>No. Izin</th>
<th>No. Arsip</th>
</tr>
</thead>
<tbody>
<?php $x=1;
foreach($obj->arsip as $val){
?>
<tr>
<td><?php echo $x; ?></td>
<td><?php echo $val->nama; ?></td>
<td><?php echo $val->perNama; ?></td>
<td><?php echo $val->noIzin; ?></td>
<td><?php echo $val->noArsip; ?></td>
</tr>
<?php
$x++;
}
?>
</tbody>
</table>
</div>
</div>
<hr>
| .. | |||||
| arsip.php | |||||
| index.html |