get_subfield ( "606", "a", "z" ); } // fin recup_noticeunimarc_suite function import_new_notice_suite() { global $dbh; global $notice_id; global $info_606; $ordre_categ = 0; foreach ( $info_606 as $categorie ) { $libelle = $categorie["a"]; $lang = $categorie["z"]; // Recherche du terme // dans le thesaurus par defaut et dans la langue de l'interface $libelle = addslashes ( $libelle ); $categ_id = categories::searchLibelle ( $libelle , 0, $lang); if ($categ_id) { $requete = "INSERT INTO notices_categories (notcateg_notice,num_noeud,ordre_categorie) values($notice_id,$categ_id,$ordre_categ)"; pmb_mysql_query ( $requete, $dbh ); $ordre_categ ++; } } }