我希望可以帮助我解决这个问题。 我有一个包含多个数据的表,我希望在单击“单击按钮”时检查计数行,并从数据表中选择每一行的值。从下面的代码中
<table class="datatable">
<tbody>
<?php
$cars = af_cars_get_vw();
$cars_count = @count($cars);
if($cars != NULL){
for($i=0; $i < $cars_count; $i++){
$car = $cars[$i];
echo '
<tr>
<td>'.$car['is_paper'].'</td>
<td>'.$car['purchase_dt'].'</td>
<td>'.$car['car_sts'].'</td>
<td>
<label class="custom-checkbox-style-container">
<input type="checkbox" name="check_car[]" value="'.$car['car_id'].'" class="d-none">
<span class="custom-checkbox-style-checkmark"></span>
</label>
</td>
</tr>
';
}
}
?>
</tbody>
</table>