Advertisement
tonny16

model tutoriel_

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