19 lines
649 B
PHP
19 lines
649 B
PHP
<?php
|
|
$jenis=$_POST['cek_jenis'];
|
|
if ($jenis=='Admin') {$pdf='admin1.pdf';} else {$pdf='satker1.pdf';}
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<div class="gal-detail thumb" style="background-color:white;">
|
|
<embed src="app/home/pdf/Pedoman_TND_RSSA.pdf#toolbar=0" width="100%" height="400"></embed>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="gal-detail thumb" style="background-color:white;">
|
|
<embed src="app/home/pdf/PANDUAN_TNDE.pdf#toolbar=0" width="100%" height="400"></embed>
|
|
<!--<embed src="app/home/pdf/<?php echo $pdf; ?>#toolbar=0" width="100%" height="400"></embed>-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|