Skip to content

Commit

Permalink
(#212) Perbaikan pada laman /gallery/form
Browse files Browse the repository at this point in the history
  • Loading branch information
totoprayogo1916 authored Nov 4, 2022
1 parent f86625f commit 65d5089
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions donjo-app/Views/gallery/form.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
<table class="form">
<tr>
<th>Nama Album</th>
<td><input name="nama" type="text" class="inputbox" size="60" value="<?php echo $gallery['nama']?>"></td>
<td><input name="nama" type="text" class="inputbox" size="60" value="<?php echo @$gallery['nama']?>"></td>
</tr>
<?php if($gallery['gambar']){?>
<?php if(isset($gallery['gambar'])){?>
<tr>
<th class="top">Gambar</th>
<td>
<div>
<img width="440" height="300" src="<?php echo base_url()?>assets/files/galeri/sedang_<?php echo $gallery['gambar']?>" alt="">
<img width="440" height="300" src="<?php echo base_url('assets/files/galeri/sedang_' . $gallery['gambar'])?>" alt="">
</div>
</td>
<input type="hidden" name="old_gambar" value="<?php echo $gallery['gambar']?>">
Expand Down

0 comments on commit 65d5089

Please sign in to comment.