This would be easier and less code:
<?php
$themonth = explode("/", $row['date']);
switch($themonth[0]){
case "01":
$displayMonth = 'January';
break;
case "02":
$displayMonth = 'February';
break;
}
echo '<table><tr align="left" valign="top"><td colspan=4><font face="Tahoma" size="2"><b>'.$displayMonth.'</b></td></tr></table>';
?>