[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
tracer
/
application
/
views
/
mahasiswa
/
[
Home
]
File: bg_foto_profil.php
<!DOCTYPE html> <html> <head> <title></title> <style> img { width: 25%; height: auto; } </style> </head> <body> <div class="image-upload"> <form method="post" action="<?php echo base_url(); ?>mahasiswa/profile_simpan_foto" enctype="multipart/form-data" > <label for="file-input"> <?php foreach ($mhs->result_array() as $key ) {?> <?php $ft = $key['foto'];?> <img id="avatar" style=" border-width: 4px; border-style: solid; margin: 20px 30px; float: right;" class="editable img-responsive" alt="Foto" src="<?php echo base_url('assets/uploads/'.$key['foto']);?>" /> <?php }?> </label> <input id="file-input" type="file" name="foto"/> <input type="submit" value="simpan" class="btn-kirim"> <a href="<?php echo base_url(); ?>mahasiswa/hapus_foto/<?php echo $ft;?>" class="btn-kirim">Hapus</a> </div> </body> </html>