PHP 表单脚本错误
我创建了一个相当大的 html 表单,我希望将数据发送到我的电子邮件地址。
我正在使用 POST 方法,并认为我的 PHP 已经达到标准。但是,我现在在提交时收到以下错误:
Parse error: syntax error, unexpected '}' in C:\www\mo\marinecforum\send_form_application.php on line 90.
我对此感到非常痛苦。除了上面的错误之外,我想知道是否有更好的方法来解决这个问题?
这是PHP 代码。
I have created a rather larger html form and I would like the data to send to my email address.
I am using the POST method and thought my PHP was up to snuff. However, I now get the following error upon submission:
Parse error: syntax error, unexpected '}' in C:\www\mo\marinecforum\send_form_application.php on line 90.
I am having a hell of a time with this. Beyond the error above, I wonder if there is a better way to approach this?
Here is the PHP code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该计算开始和结束
{
和}
的次数。您有 1 个打开的{
和 3 个关闭的}
,所以 2 个太多了。You should count your opening and closing
{
's and}
's. You have 1 opening{
and 3 closing}
's so that's 2 too much.语法错误:
这个
到这个...
此外,当您编写“$content =”时,您正在重置变量,您应该附加“$content .=”
编辑:
这是完整的代码,可能会起作用... http://sorskod.com/6ERZ455T
EDIT2:
重命名
为
或将 $_POST["email"] 更改为 $_POST["address PHP 文件中的“]。
EDIT3:
配置邮件。
Syntax error:
This
to this...
Also when you write "$content =" you are resetting variable, you should append by "$content .="
Edit:
Here is entire code, that will probably work... http://sorskod.com/6ERZ455T
EDIT2:
Rename
To
OR change $_POST["email"] to $_POST["address"] in PHP file.
EDIT3:
Configure mail.
如果您转到此处查看您的脚本。
第 2 行有一个 {
以及第 51、90、107 行的三个 }
您需要将其中一个 } 更改为 { 以便打开和关闭每个集合 {}。
If you go here to your script.
You have one { on line 2
and three } on lines 51, 90, 107
You will need to change one of your } to { in order to have opened and closed every set {}.