|
Posted by bill on 10/20/07 15:44
with this code:
------------------------------------------
$sql = "select * from do_be_do where do_be_id = '$GET[id]'
limit 1";
$result = mysql_query($sql, $connection) or die (mysql_error());
$row = mysql_fetch_array ($result);
$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.
Anyone see the error or have suggestions what to look at next ?
bill
Navigation:
[Reply to this message]
|