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.
谁能告诉我如何为带有计数器的复选框提供动态名称。我知道这可以通过 javascript.But 我想在 php 中做。请给我任何建议。
<?php for($i = 0; $i < 10; $i++){ echo '<input type="checkbox" name="foo[' . $i . ']" /> <br />'; }
这是你想要的吗?
此示例将从复选框返回一个值数组。根据您的需要修改示例。