我需要传递一些 GET 变量。我需要的链接是
index.php?type=door&qty=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 它们?