Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3. <title>Belajar CI</title>
  4. <body>
  5.  
  6. <h1>Edit Data</h1>
  7. <?php
  8. foreach($data_buku as $row){
  9. echo form_open_multipart('C_buku/edit');?>
  10. judul <input type="text" name="judul" value="<?php echo $row->judul;?>"><br><br>
  11. tebal <input type="number" name="tebal" value="<?php echo $row->tebal;?>"><br><br>
  12. penerbit <input type="text" name="penerbit" value="<?php echo $row->penerbit;?>"><br><br>
  13. <?php
  14. if($row->gambar==''){?>
  15.     <label>Belum Ada Gambar</label><br>
  16. <?php }else{ ?>
  17.     <img src="<?php echo base_url('uploads/thumbnail/'.$row->gambar)?>"><br>
  18. <?php }?>
  19. Ubah Gambar <input type="file" name="gambar">
  20. <br><br>
  21.  
  22. <input type="hidden" name="id" value="<?php echo $row->id;?>">
  23. <button type="submit">Edit</button>
  24. <?php echo form_close();
  25. }
  26. ?>
  27. </body>
  28. </html>