我有一个mysql查询,它从数据库中提取一个变量,并根据变量的编号重复一些html。然后,它基于自动增量将ID分配给单选按钮。
当查询仅返回一行时,这很好用;但是,当返回两行时,它将为2个单选按钮分配ID 0,然后分配1、2、3等
<?php
$roster_infantry_raw = tep_db_query("select * from " . $table . " where name = '" . $_GET['model'] . "'");
while ($infantry = tep_db_fetch_array($roster_infantry_raw)) {
for ($i = 0; $i < (int) $infantry['count_min']; $i++) {
?>
<table class="table table-striped table-hover">
<tr>
<td scope="row">
<?php echo tep_draw_radio_field('weapon1[' . $i . ']', 'weapon1', true); ?></td>
</tr>
</table>
<?php
}
}?>