First off... I'm not quite sure if it will work or not.. but you're using
" (double quotes)within your
echo string, which by the way is declared as a char, by using
' (single quotes) to enclose it.
I havn't tried to use it like that, so I have no idear if it will work or not..
PHP Code:
...
<?php echo '</table></td>
</tr>
<tr>
<td height="25"> </td>
</tr>
</table>'
} // line 82
If you notice, you have a echo ending just befor the 82.nd line, which isn't rounded off by a
;, if you read the error carefully that is exactly what it describes.
So add a
; after your echo action.