Guest User

Untitled

a guest
Apr 21st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5. class Site extends CI_Controller
  6. {
  7.  
  8.  
  9.     function index()
  10.    
  11.     {
  12.    
  13.         $this->load->view('options_view');
  14.    
  15.     }
  16.  
  17.     function create()
  18.     {
  19.    
  20.         $data = array(
  21.                 'title' => $this->input->post('title'),
  22.                 'content' => $this->input->post('content')
  23.                 );
  24.  
  25.         $this->site_model->add_record($data);
  26.         $this->index();
  27.        
  28.     }
  29.  
  30. }
Add Comment
Please, Sign In to add comment