cara upload foto menggunakan CI (codeigniter)(how to upload image use CI)
view : index.php <html> <head> <title>upload</title> </head> <body> <center><h1>Membuat Upload File </h1></center> <?php echo $error;?> <?php echo form_open_multipart('upload/aksi_upload');?> <input type="file" name="berkas" /> <br /><br /> <input type="submit" value="upload" /> </form> </body> </html> sukses.php <html> <head> <title>upload<</title> </head> <body> <center><h1>Upload File Dengan CodeIgniter</h1></center> <ul> <?php foreach ($upload_data as $item => $value):?> <li><?php echo $item;?>: <?php echo $value;?></li> <?php endforeach; ?> </ul> </body> </html> controller...