-2

我的页面中有根据当前月份的复选框,我在数据库中有 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
            }
            ?>
4

1 回答 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));
}
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>';
}
?>
于 2013-03-18T07:28:01.330 回答