php code
if(empty($_POST) === false)
{
$required_fields = array('s_group', 's_choice');
foreach($_POST as $key=>$value)
{
if(empty($value) && in_array($key, $required_fields) === true)
{
$error = 'All * fields are required';
break 1;
}
}
if(empty($error) === true)
{
echo $_POST['s_group'];
echo $_POST['s_choice'];
echo $_POST['choice1'];
echo $_POST['choice2'];
}
}
echo $error;
这是html代码
<form action="create_room.php" method="post" name="form1">
<select name="s_group">
<option value=""><-- Please Select Item --></option>
<?
$strSQL = "SELECT * FROM room_group_options ORDER BY op_id";
$objQuery = mysql_query($strSQL);
while($objResult = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResult["op_id"];?>"><?=$objResult["group"];?></option>
<?
}
?>
</select>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<p>Number of Choice :
<select id="pagelist" name = "s_choice">
<option value=""><-- Please Select Item --></option>
<option value="twoChoices">2 Choices</option>
<option value="threeChoices">3 Choices</option>
<option value="fourChoices">4 Choices</option>
<option value="fiveChoices">5 Choices</option>
</select>
<div id="twoChoices" style="display:none">
Insert your choice<br>
1:<input type="text" name="choice1" /><br />
2:<input type="text" name="choice2" /><br />
</div>
<div id="threeChoices" style="display:none">
Insert your choice<br>
1:<input type="text" name="choice1" /><br />
2:<input type="text" name="choice2" /><br />
3:<input type="text" name="choice3" /><br />
</div>
<script language="javascript">
$("#pagelist").change(function()
{
var viewID = $("#pagelist option:selected").val();
$("#pagelist option").each(function()
{
var hideID = $(this).val();
$("#"+hideID).hide();
});
$("#"+viewID).show();
});
</script>
<input type="submit" name "submit" value="Create">
</form>
我是一个PHP新手。填写所有空白,选择的选项并按下提交按钮后,s_group和s_choice中的值都在$ _POST中,但是来自choice1和choice2。
我怎样才能获得这些价值?
答案 0 :(得分:1)
只创建一个文本输入按钮Choice1,choice2 ...等实例,并在更改页面列表时隐藏/显示通过javascript输入的单个文本。您将在帖子中获得变量。
答案 1 :(得分:1)
重写以下代码
插入您的选择
1:<input type="text" name="choice1" value = ""/><br />
2:<input type="text" name="choice2" value = ""/><br />
Insert your choice<br>
1:<input type="text" name="choice3" value = ""/><br />
2:<input type="text" name="choice4" value = ""/><br />
3:<input type="text" name="choice5" value = ""/><br />
并且不要复制您的选择名称。以这样的方式制作你的javascript,它会显示/隐藏页面列表中的choice3,choice4和choice5按钮。