Is it possible to use php code inside layers? Heres what Ive done:
<DIV id=home
style="Z-INDEX: 1; LEFT: 21px; WIDTH: 374px; HEIGHT: 105px; POSITION: absolute; TOP: 38px; BACKGROUND-COLOR: #8c8c8c; layer-background-color: #8C8C8C; visibility: hidden;">
<table width="100%" height="107" border="0">
<tr bgcolor="#CCCCCC">
<td colspan="3"><span class="style1">Date:</span>
<?php include 'Calendar.html';?>
</td>
</tr>
</table>
</DIV>
Can I do an "include file" in a div? The Calender.html file does not show up. What am I doing wrong? Thanks.