ChapDaddy65

gallery.php - Controller

Sep 26th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php // filename: gallery.php
  2. class Gallery extends CI_Controller
  3. {
  4.     function index()
  5.     {
  6.         $this->load->model('gallery_model');
  7.  
  8.         if($this->input->post('upload'))
  9.         {
  10.             $this->gallery_model->do_upload();
  11.         }
  12.  
  13.         $this->load->view('gallery');
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment