我的页面中有当前月份的复选框,我在数据库中有1个(活动)0r 0(非活动)值。我也保存了与记录相对应的日期。现在我想要复选框选中哪些值是1并且对应于它们的日期,并且取消选中哪些值为0.其他框应该为空,因为我没有完整的月值。
<?php
$isActiveYMD="";
$isActive="";
foreach($attendancelist as $attendancelis){
$isActive[]= $attendancelis['EmployeeAttendance']['is_active'];
$isActivee= $attendancelis['EmployeeAttendance']['date'];
$isActiveYMD[] = date('d-m-Y',strtotime($isActivee));
}
$no_of_days= date("t");
for($i=1;$i<=$no_of_days;$i++){
?>
<div style="width:300px;float:left;">
<input type="checkbox" value="1" name="isactive" <?php if($isActive[$i]=="1"){ ?>checked="checked" <?php }else{ } ?> />
<?php echo $start = date(''.$i.'-m-Y'); ?>
</br></br></br>
</div>
<?php
}
?>
答案 0 :(得分:0)
<?php
$isActiveYMD="";
$isActive="";
foreach($attendancelist as $attendancelis){
$isActive[] = $attendancelis['EmployeeAttendance']['is_active'];
$isActivee = $attendancelis['EmployeeAttendance']['date'];
$isActiveYMD[] = date('d-m-Y',strtotime($isActivee));
}
for ($i=1;$i<=date('t');$i++) {
echo '<div style="width:300px;float:left"><input type="checkbox" value="1" name="';
echo $unique_name; //this name is used to check if the checkbox is checkd in your form-action
echo ($isActive[$i] == 1) ? '" checked="checked" /> ' : '" /> ';
echo $i.date('-m-Y').'<br /><br /><br /></div>';
}
?>