我一直收到以下错误:
解析错误:语法错误,第70行/home/a4999406/public_html/willingLog.html中的意外T_SL
在以下代码上(第一行是第70行):
echo <<<END
<form action = "willingLog.html" method="post"><pre>
First <input type="text" name="first" />
Last <input type="text" name="last" />
Email <input type="text" name="email" />
Username <input type="text" name="user_name" />
<input type="submit" value="AD RECORD" />
</pre></form>
END;
heredoc似乎没有用。我尝试过其他例子。
以下是doctype标题。那里有什么不对吗?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
答案 0 :(得分:16)
查看复制粘贴,看起来在第一行的单词“END”后面有一个空格字符:
'echo <<<END '
尝试摆脱空间角色。 Googling找到的答案。来源(链接现已死亡):http://www.alexxoid.com/blog/dev/php-dev/php-parse-error-unexpected-t_sl.html
答案 1 :(得分:0)
尝试:
echo <<<'END'
<form action = "willingLog.html" method="post"><pre>
First <input type="text" name="first" />
Last <input type="text" name="last" />
Email <input type="text" name="email" />
Username <input type="text" name="user_name" />
<input type="submit" value="AD RECORD" />
</pre></form>
END;