fixing up some errors.
can't print an array object in the quotes of a print because you have to use the double quotes to point to what object you want in the array.
while ($row = mysql_fetch_array($result))
{
if ( ($row['date']==$cal_date) && ($row['description']!= "") )
{
print "<td class=\"tcell\" bgcolor=#CCCCCC valign=\"top\" height=\"100\">$d ".$row["description"]."</td>";
}
else {
print "<td class=\"tcell\" bgcolor=#CCCCCC valign=\"top\" height=\"100\">$d yuck</td>";
}
}
if you run into anymore problems just email me and i'll get to you asap.