19 lines
1021 B
PHP
19 lines
1021 B
PHP
<?php
|
|
$surat_id=$_POST['id'];
|
|
$no_surat=$_POST['no_surat'];
|
|
$tgl_diterima=$_POST['tgl_diterima'];
|
|
?>
|
|
|
|
|
|
<form role="form">
|
|
<div class="form-group">
|
|
<label for="exampleInputEmail1">No Surat</label>
|
|
<input type="hidden" value="<?php echo $surat_id; ?>" id="surat_id">
|
|
<input type="text" class="form-control" value="<?php echo $no_surat; ?>" id="no_surat">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="exampleInputEmail1">Tanggal Diterima</label>
|
|
<input type="text" class="form-control" value="<?php echo substr($tgl_diterima, 0, -3); ?>" id="tgl_diterima">
|
|
</div>
|
|
</form>
|