Hi Carl.
Looks like you have missed using \ in a few places.
For example near the top you have
PHP Code:
echo ”<img src=”<td style=”background-image:url('http://www.battlestationextreme.com/images/homepage09.jpg'); height:40px”>
but it should be
PHP Code:
echo ”<img src=\”<td style=\”background-image:url(\"http://www.battlestationextreme.com/images/homepage09.jpg\"); height:40px\”>
Then you have
PHP Code:
<table width=”181” border=”0” cellspacing=”0” cellpadding=”0” id=”table16”>
but it should be
PHP Code:
<table width=\”181\” border=\”0\” cellspacing=\”0\” cellpadding=\”0\” id=\”table16\”>
and so on for the rest...
If you dont escape every " that is in your HTML inside the echo statement with \ it will cause a premature end to the echo statement and wont work.