Hi, here is the code, I can't see anything wrong with it but when I run it I keep getting the "Parse error". Anybody knows why?
Thanks
for ($i = 0; $i < $num_of_array; $i++) {
$date[$i]=substr($content_array[$i],12,8);
$desc[$i]=substr($content_array[$i],23,15);
echo '<tr>
<td width="60" valign="top" height="68" bgcolor="#6699CC"><font face="Arial" size="1"><a name="Jan"></a><img src="images/'.$i+1.'.gif" width="60" height="60" border="0"></font></td>
<td width="400" bgcolor="#6699CC" height="68">
<table width="400" border="0" cellspacing="0" cellpadding="5" height="29">
<tr bgcolor="#FFFFFF">
<td bgcolor="#FFFFFF" height="60">
<p><font size="2" face="Arial" color="#333366">'.$date[$i].'<br>'.$desc[$i].',<br>125 B.E.B</font></p>
<p><font size="2" face="Arial" color="#C0C0C0"><br></font></p>
</td>
</tr>
</table>
</td>
</tr>';
}