tonny16

MY_Controller

Jul 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. class MY_Controller extends CI_Controller
  3. {
  4.  
  5.     public $tutorielpublic;
  6.  
  7.     public function __construct()
  8.     {
  9.         parent::__construct();
  10.  
  11.         $this->load->model('tutoriel_model');
  12.         $this->data['tutorielpublic'] = $this->tutoriel_model->tutorielpublic();
  13.  
  14.     }
  15. }
Add Comment
Please, Sign In to add comment