I'm returning a PHP array from a function and want to display in a tabular format with appropriate links in their respective cells.This works fine in IE7(Windows 7) but the links r not clickable in firefox 3.5.7. Here is the little of code :
<td>Monday<?echo "<br>" . $date[1];?></td>
<td><? if($timetable['mon']['1']!=""){ ?>
<a href="staff_attendance_list.php?pid=mon-1">
<? echo $timetable['mon']['1'];} else echo "I";?>
</a>
</td>