"_section_" ), "PMBSECTIONS"); $allow_section = 1; } print $begin_result_liste; $requete = "select * from parametres where gestion=0 order by type_param, section_param, sstype_param "; $res = pmb_mysql_query($requete); $i = 0; $type_param = ''; $section_param = ''; while ($param = pmb_mysql_fetch_object($res)) { if (! $type_param) { $type_param = $param->type_param; $creer = 1; $fincreer = 0; $odd_even = 0; } elseif ($type_param != $param->type_param) { $type_param = $param->type_param; $creer = 1; $fincreer = 1; $odd_even = 0; } else { $creer = 0; $fincreer = 0; } if (($section_param != $param->section_param) && ($allow_section)) { $section_param = $param->section_param; $creer_section = 1; } else $creer_section = 0; if ($fincreer) { print "\n"; } if ($creer) { $lab_param = $msg["param_" . $type_param]; if ($lab_param == "") $lab_param = $type_param; print "\n
" . $lab_param . "
\n "; print ""; }