<?php
$mounth=array('jan','feb','mar','apr','may','iun','iul','aug','sep','oct','nov','dec');
//creating your variables
for($m=0;$m<12;$m++)
for($d=1;$d<32;$d++)
{
$var=$mounth[$m].$d;
$$var='';
}
//parse your variables
for($m=0;$m<12;$m++)
for($d=1;$d<32;$d++)
{
........
$var=$mounth[$m].$d;
if($$var=='check') {..........};
else {........};
}
?>
Try this script.
Hope it will help you.