public function index()
{
$this->output->enable_profiler(TRUE);
$this->load->model('User_model');
$this->load->database();
$this->load->helper('url');
$data['user_num'] = $this->User_model->count_users;
$this->load->view('header_view',$data);
$this->load->view('index_view');
$this->load->view('footer_view');
}