Advertisement
tonny16

model_tutoriel

Jul 17th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. public function load_tutoriel($titre)
  2.   {
  3.     $this->db->select('*');
  4.     $this->db->from('tutoriel');
  5.     $this->db->where('status', "P");
  6.     $this->db->where('titre', $titre);
  7.    
  8.  
  9.     $this->load_tutoriel = $this->db->get()->result();
  10.  
  11.     return $this->load_tutoriel;
  12.  
  13.    
  14.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement