邮件脚本 - 解析错误:语法错误,意外'='

时间:2013-08-18 00:17:43

标签: php html

我正在尝试从包含下拉列表的html表单设置一个简单的邮件脚本,但在我声明所选变量的行上我收到一条错误消息: 解析错误:语法错误,意外'='........

我的html表单包含下拉列表,如下所示:

<select name="buying-selling" id="buying-selling">
<option value="none_selected" selected="selected">Please Select</option>
<option value="buying_property">Buying a Property</option>
<option value="selling_property">Selling a Property</option>
<option value="sales_updates">Sales Updates</option>
</select>

在我的电子邮件脚本的顶部,我有:

<?php
if ($_POST['Submit']!="")
{
$name=$_POST['name'];
$emailaddr=$_POST['emailaddr'];
$buying-selling=$_POST['buying-selling'];
$message=$_POST['message'];

.......其次是所有邮件发送者数据

但是当我尝试处理表单时,我收到包含POST ['buy-selling']元素的行的“Parse error:syntax error,unexpected'='”。

从下拉列表中声明项目是否有不同的语法?

我是编码邮件脚本的新手,所以任何建议都会非常受欢迎。

非常感谢

1 个答案:

答案 0 :(得分:4)

$buying-selling不是有效的变量名称。请改为$buying_selling