问问题
1806 次
6 回答
0
这是你想要的吗...?
if(isset($_POST['Fwhere'])) {
$Fwhere = $_POST['Fwhere'];
}
于 2013-10-02T06:59:56.787 回答
0
您的 HTML 代码中没有 FindElance
, FindGoogle
, Fwhere
。
您在表单中选择的名称是“ howufindus ”。
所以你应该$_POST
像这样使用它:
if(!$_POST['howufindus']) {
$FwhereError = 'Please tell where you find us.';
$FwhereError = true;
} else {
$Fwhere = trim($_POST['howufindus']);
}
对于附件,您必须使用$_FILES
.
希望这可以帮助
于 2013-10-02T06:53:23.777 回答
0
在您的本地系统上尝试此代码作为起点
<?php
if($_POST) {
echo "<pre>";
print_r($_POST);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form name="test" method="post" action="" name="testform">
<select name="testselect">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<input type="file" name="testfiel" />
<input type="submit" value="submit" />
</form>
</body>
</html>
这将向您显示提交表单后获得的参数,也不要将上传的文件添加为扩展名,您需要使用 $_File 方法检查它。
于 2013-10-02T06:53:33.297 回答
0
你的问题不够清楚:(
无论如何试试这个....
$body = "Where you find us : ". $Fwhere;
于 2013-10-02T06:49:23.490 回答
0
if(trim($_POST['howufindus']) == '') {
$FwhereError = 'Please tell where you find us.';
$FwhereError = true;
} else {
echo $Fwhere = trim($_POST['howufindus']);
}
于 2013-10-02T06:57:32.963 回答
0
根据您的 html 选择框,您不会使用以下方法获得所选值:
<select id="wherefrom" class="era-select" name="howufindus" onclick="showhere()">
<option value="FindElance">Elance</option>
<option value="FindGoogle">Google</option>
<option value="Findsarch">Search engin</option>
<option value="FindAdvertisement">Advertisment</option>
<option value="FindOther">Other</option>
</select>
$_POST['FindElance'], $_POST['FindElance'], $_POST['Findsarch']...
你需要的是:
$_POST['howufindus'];
您的 php 将更改为:
if(trim($_POST['howufindus'])) === '') {
$FwhereError = 'Please tell where you find us.';
$FwhereError = true;
} else {
$Fwhere = trim($_POST['Fwhere']);
}
干杯
于 2014-01-29T12:13:45.067 回答