Сравнил два скрипта...
-------------НЕ показывает месяцы:-------------
function Select_Month($db, $month_num, $varname) {
   $month[\'01\'] = "Январь";
   $month[\'02\'] = "Февраль";
   $month[\'03\'] = "Март";
   $month[\'04\'] = "Апрель";
   $month[\'05\'] = "Май";
   $month[\'06\'] = "Июнь";
   $month[\'07\'] = "Июль";
   $month[\'08\'] = "Август";
   $month[\'09\'] = "Сентябрь";
   $month[\'10\'] = "Октябрь";
   $month[\'11\'] = "Ноябрь";
   $month[\'12\'] = "Декабрь";
   
   echo "";
-------------показывает месяцы:-------------
function Select_Month($db, $month_num, $varname) {
   $month[\'01\'] = "Январь";
   $month[\'02\'] = "Февраль";
   $month[\'03\'] = "Март";
   $month[\'04\'] = "Апрель";
   $month[\'05\'] = "Май";
   $month[\'06\'] = "Июнь";
   $month[\'07\'] = "Июль";
   $month[\'08\'] = "Август";
   $month[\'09\'] = "Сентябрь";
   $month[\'10\'] = "Октябрь";
   $month[\'11\'] = "Ноябрь";
   $month[\'12\'] = "Декабрь";
   
   echo "";