Hi I am trying to display months name in PHP but it is not showing in German language
in MYSQL, my date is showing as 2021-01-23
which I converted into months by using PHP function Month(), MONTH(beginn)
PHP Code -
date_default_timezone_set('Europe/Berlin');
setlocale(LC_ALL, 'de_DE.utf8');
echo (date("F",strtotime($month)));