hi nochmal,
vielleicht hilft dir das, es kann sein das myTest zwar
leer ist aber doch gesetzt siehe beispiele:
$month = "";
echo isset($month); // = 1
echo empty($month); // = 1
if ($month) // ergibt false
echo "True";
$month = Null;
echo isset($month); // = 1
echo empty($month); // = 0
ich würde mit
if ($month)
fragen
bis dann