T_constant_encapsed_string问题

时间:2013-01-24 15:27:14

标签: php

请不要告诉我谷歌问题,因为我已经没有任何作用,并添加了一个。似乎也没有帮助我。我已经多次尝试过各种各样的尝试。

问题我遇到第52行的问题:

50 require(html-head.inc");
51 
52 echo "<h1>$title, $firstName!</h1>\n";
53 echo "</header>\n";
54 echo "<article>\n";
55 echo "<p>$firstName $lastName, <br />We appreciate your participation in ";
56 echo "our meaningless activity after your $age years of life. ";
57 echo "We will not spam your $email address, but we do plan to ";
58 echo "launch a Denial of legitimacy attack on $url. </p>\n";
59 }
60 echo "</section><!--wrapper-->\n</body>\n</html>";

任何帮助将不胜感激。

3 个答案:

答案 0 :(得分:4)

尝试更改此内容:

require(html-head.inc");

到这个

require("html-head.inc");

除此之外,我看不到任何其他错误......

答案 1 :(得分:2)

您缺少要求声明中的起始引用。 它应该是:

  require("html-head.inc");

答案 2 :(得分:0)

在require_once中,你没有写第一个双引号(“)。