我有一种杂货清单,我希望能够在其中添加来自不同商店的商品。
目前我有一个表格,我在其中发布文章编号和数量,然后按提交将项目添加到购物清单(下表)。
<form action="<?php echo $current_file.$id; ?>" method="POST">
Store: <select>
<option value="gross1">Store 1</option>
<option value="gross2">Store 2</option>
<option value="gross3">Store 3</option>
</select>
Art no: <input type="text" size="15" name="number" />
Quantity: <input type="text" size="3" name="q" />
<input type="submit" value="Add item" />
</form>
<table>
<tr>
<th>
Art no
</th>
<th>
Article name
</th>
<th>
Price
</th>
<th>
Quantity
</th>
<th>
Total
</th>
</tr>
商店项目列表存储在 mysql 表中,所以我想通过下拉选择列表选择商店(或表,如果你愿意的话)。但问题是,如果我从中选择商品的商店不是商店 1,那么在每次按下提交后一遍又一遍地选择商店会非常令人沮丧。
我认为我不能使用使用某种 GET 变量来指定所选商店的脚本,因为我已经使用 GET 来指定所选杂货清单。是否有另一种方法可以让网站在页面刷新后记住所选商店?
提前致谢!