Fonction mettre un texte en majuscule - FX et Php standard: Note: cette fonction ne permets pas cependant d'afficher les caractères accentuées au milieu d'un mot function to_upper($text) { $new_string = ""; while(eregi("^([^&]*)(&[a-z0-9]{2,9};|&)(.*)",$text,$regs)) { $new_string .= strtoupper($regs[1]); $new_string .= (substr($regs[2],-4)=="uml;") ? substr($regs[2],0,1) . strtoupper(substr($regs[2],1,1)) . substr($regs[2],-4) : $regs[2]; $text = $regs[3]; } $new_string .= strtoupper($text); return $new_string; } on vient affiche un champ comme suit: on peux aussi coupler le tout avec une css: dans la css on aurait alors: .g_bold_noir {font-family: Arial; font-size: 10pt; font-style: normal; color: #000000; font-weight: bold ; text-align: left; text-transform: capitalize}