我需要传递几个GET变量。我需要的链接是
?的index.php型=门&安培;数量= 4
我可以像
那样轻松地写出来<a href="index.php?type='.$type.'&qty='.$qty.'"></a>
但我需要从下拉列表中选择$ qty金额。所以我有
<form name="qty" method="GET" action="../../../index.php?door-type="<?php echo $door_model; ?>">';
<select>
<?php
for ($front_int=1; $front_int<=99; $front_int++)
{
echo'<option value="'.$front_int.'">'. $front_int . '</option>';
}
?>
</select>
<input type="submit" value="front-qty">
</form>
那么如何将这两个值附加到一个中,以便我在下一页上获得$ _GET,就像我创建的第一个链接一样?
答案 0 :(得分:1)
如果qty需要是select,则将该名称提供给select。另外,使用隐藏字段传递另一个变量,这是非常标准的。祝你好运:)
<form name="NOT_QTY" method="GET" action="../../../index.php">
<input type="hidden" name="door-type" value="<?php echo $door_model;?">
<select name="qty">
<?php
for ($front_int=1; $front_int<=99; $front_int++)
{
echo'<option value="'.$front_int.'">'. $front_int . '</option>';
}
?>
</select>
<input type="submit" value="front-qty">
</form>