Pertama, buat terlebih dahulu Upload Form, dalam hal ini saya menyambung project sebelumnya dengan nama file ‘upload.php’ di dalam folder ‘view/news’,
Berikut code nya :

<html>
<head>
<title>Upload Form</title>
</head>
<body>
<?php echo $error;?>
<?php echo form_open_multipart('news/do_upload');?>
<input type="file" name="userfile" size="20" />
<br /><br />
<input type="submit" value="upload" />
</form>
</body>
</html>

Berikut ini adalah screen shot nya :

















Kemudian, buat controller upload untuk menghandle action dari proses upload. Dalam kasus ini, sya tetap menggunakan controller lama dari project sebelumnya hanya menambahkan fungsi do_upload saja.
Berikut code dari ‘do_upload’ :

public function do_upload(){
              $config['upload_path'] = './uploads/';
              $config['allowed_types'] = 'gif|jpg|png';
              $config['max_size'] = '100';
              $config['max_width'] = '1024';
              $config['max_height'] = '768';
              $this->load->library('upload', $config);

              if ( ! $this->upload->do_upload()){
                     $error = array('error' => $this->upload->display_errors());
                     $this->load->view('news/upload', $error);
              }else{
                     $data = array('upload_data' => $this->upload->data());
                     $this->load->view('news/upload_success', $data);
              }
       }

Kemudian, tekan tombol upload dan proses upload akan dimulai, jika sukses maka halaman akan berpindah ke file upload_success.
Kode halaman ‘upload_success’ bisa dilihat di bawah ini :

<html>
<head>
<title>Upload Form</title>
</head>

<body>
<h3>Your file was successfully uploaded!</h3>
<ul>
<?php foreach ($upload_data as $item => $value):?>
<li><?php echo $item;?>: <?php echo $value;?></li>
<?php endforeach; ?>
</ul>
<p><?php echo anchor('news/upload', 'Upload Another File!'); ?></p>
</body>
</html>

Dan screen shot nya adalah sebagai berikut :

















Iya, jangan lupa terakhir buat folder ‘uploads’ di bagian depan aplikasi CI ini..