View Single Post
Old 06-30-2005, 10:09 AM   #2 (permalink)
redhead
Newbie
 
redhead's Avatar
 
Join Date: Jun 2002
Location: Denmark
Posts: 1,709
redhead is on a distinguished road
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">&nbsp;</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.
__________________
Don't worry Ma'am, We're university students, We know what We're doing.
-----
If you pull the pin, Mr.Grenade would no longer be your friend.
-----
01000111 01101111 00100000 01000011 00100000 00100001
redhead is offline   Reply With Quote