Hallo!
Vielleicht hilft dir das weiter.
Für die Monate:
<?PHP
$monat = 1;
do {
if($mont<10)echo "0";
echo $monat;
$mont++;
} while ($mont<13);
?>
Für die Tage:
<?PHP
$tag = 1;
do {
if($tach<10)echo "0";
echo $tag;
$tach++;
} while ($tag<32);
?>
Ich habe allerdings auch nicht richtig verstanden was du erreichen willst.
Grüße, Matze