|
Posted by xeno on 10/26/05 16:33
On Wed, 26 Oct 2005 15:22:22 +0200, "Sander J. van Minnen"
<sander@ozoneproductions.com> wrote:
>Can anybody tell me what could be wrong with...:
>
><?PHP
>echo"<frameset cols=*,185 frameborder=NO border=0 framespacing=0> ":
>echo"<frame name=site src=main.php frameborder=0> ":
>echo"<frame name=sidebar src=sidebar.php frameborder=0> ":
>echo"</frameset> ":
>?>
>
>It produces the following error:
>
>Parse error: parse error, unexpected ':', expecting ',' or ';' in
>/home/ozone/public_html/yazzy/index.php on line 3
Like the error messages states... you have to use a ; instead of a :
at the end of a line...
[Back to original message]
|