public function ajouter_recette(Recette $r) { $this->db->set('id_utilisateur', $r->id_utilisateur()); $this->db->set('id_categorie', $r->id_categorie()); $this->db->set('id_sous_categorie', $r->id_sous_categorie()); $this->db->set('titre', $r->titre()); $this->db->set('nombre_personnes', $r->nombre_personnes()); $this->db->set('categorie_prix', $r->categorie_prix()); $this->db->set('categorie_difficulte', $r->categorie_difficulte()); $this->db->set('duree', $r->duree()); $this->db->set('photo', $r->photo()); $this->db->set('description', $r->description()); $this->db->set('slug', $r->slug()); $this->db->insert($this->table); $insert_id = $this->db->insert_id(); return $insert_id; }