Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在运行时根据行数生成的组合框列表。如果有 5 行,则有 5 个组合框。我在底部有一个提交按钮,我希望当我点击提交时它应该在数据库中看到更新的值。在 php 中,我们从一个组合框中获取值<select name="cc"></select> ,$_POST['cc']但是现在我有每个组合框,所以我的问题是
<select name="cc"></select>
$_POST['cc']
您可以使用 cc[] 作为名称,在 PHP 中您将收到一个包含所有信息的数组。或者,也许您可以在每个名称后附加一个数字并对其进行交互以读取所有结果。
<select name="cc[]">...options...</select> <select name="cc[]">...options...</select> <select name="cc[]">...options...</select>
那么在 PHP 中 $_POST['cc'] 应该是一个包含所有选定选项的数组。