解析错误:语法错误,意外的 $end /path/php.module(74)

发布于 2024-11-17 06:06:03 字数 358 浏览 0 评论 0原文

我正在制作一个带有验证码的表格,以便通过电子邮件将表格发送给我。 我编写了 PHP 代码,但出现错误:

Parse error: syntax error, unexpected $end /path/php.module(74) : eval()'d code on line 103

代码如下: http://pastebin.com/S2ZvdXTX

谁能告诉我发生了什么事吗?我的眼睛灼烧着,找不到那个问题,但我知道我已经接近它了。

顺便说一句,抱歉,我不是 PHP 专业人士。

I'm making a form with CAPTCHA to email me the form.
I made the PHP code but I'm having an error:

Parse error: syntax error, unexpected $end /path/php.module(74) : eval()'d code on line 103

Here is the code:
http://pastebin.com/S2ZvdXTX

Can anyone please tell me what's going on? My eyes are burning out, and can't find that problem, but I know I'm near to it.

BTW, I'm sorry, I'm not a professional with PHP.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

(り薆情海 2024-11-24 06:06:03

最后需要额外的 }

{ 必须与 } 匹配。

You need an extra } at the end.

A { must be matched with a }.

一萌ing 2024-11-24 06:06:03

看起来就像里面的另一个 } 一样简单。您从未在第一个 else 之后关闭 if

Ya looks like it is just as simple as another } in there. You never closed the if right after that first else

倾城花音 2024-11-24 06:06:03

您没有关闭您的

if ($_POST["vercode"] != $_SESSION["vercode"] OR $_SESSION["vercode"]=='')  {
     echo  '<strong>Incorrect verification code.</strong><br>';
} else { 

丢失的

}

(最后

)更正的代码
http://pastebin.com/djb8pNQ6

还有很多 phpformatters,例如 http://phpformatter.com 这会有所帮助

You did not closed your

if ($_POST["vercode"] != $_SESSION["vercode"] OR $_SESSION["vercode"]=='')  {
     echo  '<strong>Incorrect verification code.</strong><br>';
} else { 

(you're missing

}

at the end)

corrected code
http://pastebin.com/djb8pNQ6

there are also many phpformatters such as http://phpformatter.com which would help

束缚m 2024-11-24 06:06:03

有时,由于缺少 '{}' ,会发生这种情况。
为此,您只需从上到下彻底检查代码即可。

sometime this occours due to missing '{}' .
for this you only have to thoroughly chech the code up to downward.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文