<form action="addbusstop.php" method="POST" id="produceJSON" enctype="multipart/form-data">
<?php
echo "<div class = 'dropdown_container'><select class = 'dropdown select xs-mt1' name = 'line' id = 'line'>";
foreach($ptv_json_bus as $item)
{
$stopid = $item['stop_id'];
$stopname = $item['location_name'];
?>
<option value = "<?php echo $stopid;?>"> <?php echo $stopname;?></option>
<?php
}//end foreach
?>
<input type = "hidden" value ="<?php echo $stopid; ?>" name="stop_id" id="stop_id">
<input type = "hidden" value ="<?php echo $stopname; ?>" name="stop_name" id="stop_name">
</select>
<button type="submit" class="button button-latrobe-orange xs-ml2" onclick="changeState3()" id="submitstop2" name="submitstop2">OK</button>
</div>
</form>
嘿伙计们。以上是我正在使用的代码。
我想要实现的是POST所选值的停止ID并将NAME(从下拉列表中)停止到另一个文件,然后将数据添加到mySQL中。
我现在的问题是我当前的代码实际上只是发布$ stopid和$ stopname的最后一个设置值,这不是我需要的。
我已经坚持了很长一段时间而且我会喜欢它,这里有人可以指出我正确的方向!
谢谢
答案 0 :(得分:3)
将<input>
元素移到<select>
元素之外。
您只能将<option>
元素放在<select>
元素中。
我的版本有所提升。
<form action="addbusstop.php" method="POST" id="produceJSON" enctype="multipart/form-data">
<div class = 'dropdown_container'>
<select class="dropdown select xs-mt1" name="line" id="line">
<?php
foreach ($ptv_json_bus as $item) {
$stopid = $item['stop_id'];
$stopname = $item['location_name'];
echo "<option value='$stopid'>$stopname</option>";
}
?>
</select>
<input type="hidden" value="<?php echo $stopid; ?>" name="stop_id" id="stop_id">
<input type="hidden" value="<?php echo $stopname; ?>" name="stop_name" id="stop_name">
<button type="submit" class="button button-latrobe-orange xs-ml2" onclick="changeState3()" id="submitstop2" name="submitstop2">OK</button>
</div>
</form>