MrBrohid

Untitled

May 21st, 2018
6,370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. public function aksi_upload(){
  2.         $config['upload_path']          = './gambar/'; <!-- Lokasi foto -->
  3.         $config['allowed_types']        = 'gif|jpg|png'; <!-- Type file  -->
  4.         $config['max_size']             = 100; <!-- maksimal ukuran gambar -->
  5.         $config['max_width']            = 1024; <!-- maksimal lebar -->
  6.         $config['max_height']           = 768; <!-- maksimal tinggi  -->
  7.  
  8.         $this->load->library('upload', $config); <!-- untuk memanggil library upload pada CodeIgniter dengan menggunakan pengaturan yang sudah di buat dari variabel $config -->
  9.  
  10.         if ( ! $this->upload->do_upload('berkas')){
  11.             $error = array('error' => $this->upload->display_errors());
  12.             $this->load->view('v_upload', $error);
  13.         }else{
  14.             $data = array('upload_data' => $this->upload->data());
  15.             $this->load->view('v_upload_sukses', $data);
  16.         }
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment