Posted by lawrence k on 10/20/07 16:35
On Oct 20, 11:44 am, bill <nob...@spamcop.net> wrote:
> with this code:
> $title = stripslashes($row['title']);
> $depends = stripslashes($row['depends']);
>
> $detail<<<eoxd
> <form action="do_detail_save.php" method="post">
> ...
> eoxd;
> ----------------------------
> (the elipses (...) represent code left out of the posting
>
> I get the compile error:
> Parse error: syntax error, unexpected T_START_HEREDOC in ....at
> line 54.
>
> line 54 is the line after: $detail<<<eoxd
>
> I can't see an error. If I put an echo statement just before the
> heredoc there is no compile error, so I presume that the script
> is ok up to that place.
Don't you need an equal sign?
$detail = <<<eoxd
[Back to original message]
|