25 lines
879 B
PHP
25 lines
879 B
PHP
<?php
|
|
include("../../koneksi.php");
|
|
$riwayat_kegiatan_id=$_POST['riwayat_kegiatan_id'];
|
|
|
|
$d=pg_query("SELECT ket_acara FROM riwayat_kegiatan WHERE id='$riwayat_kegiatan_id'");
|
|
while($r=pg_fetch_array($d)) {$ket_acara=$r[0];}
|
|
?>
|
|
|
|
<style type="text/css">
|
|
pre {
|
|
font-family: 'Arial', sans-serif;
|
|
white-space: pre-wrap;
|
|
word-break: keep-all;
|
|
border: 0;
|
|
color:black;
|
|
padding: 0px;
|
|
background: rgba(0, 151, 19, 0);
|
|
}
|
|
</style>
|
|
<form role="form">
|
|
<div class="form-group">
|
|
<label for="exampleInputEmail1">Keterangan</label>
|
|
<pre class="tabel"><?php echo $ket_acara; ?></pre>
|
|
</div>
|
|
</form>
|