PHP 引发有关 PHP 开始/结束字符之外的代码的错误

发布于 2024-10-16 08:29:00 字数 334 浏览 3 评论 0原文

我有一个 PHP 页面不断引发错误

PHP Parse error: syntax error, unexpected '<' in /home/zach/public_html/date/giftsent1.php on line 30

有趣的是,第 30 行位于 HTML 中。它位于 PHP 结束字符 ( ?> ) 之后。

我已将代码添加到 Pastebin:

http://pastebin.com/Dsh0KwdA

I have a PHP page that keeps raising the error

PHP Parse error: syntax error, unexpected '<' in /home/zach/public_html/date/giftsent1.php on line 30

The funny thing is, line 30 is in the HTML. It is after the PHP end characters ( ?> ).

I have added the code to Pastebin:

http://pastebin.com/Dsh0KwdA

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

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

发布评论

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

评论(1

痴骨ら 2024-10-23 08:29:00

您在第 18 行的查询中缺少结尾双引号:

$query = "INSERT INTO gifts (`Gift`, `User`, `Type`, `From`, `Status`) VALUES ('$gid', '$val', '$ext', 'Pending');

You are missing the ending double quotes in the query on line 18:

$query = "INSERT INTO gifts (`Gift`, `User`, `Type`, `From`, `Status`) VALUES ('$gid', '$val', '$ext', 'Pending');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文