我在这里有一个简单的挑战 php mysql 。我是 php 的新手,正在尝试编写一些代码。
下面是我的代码:
$checked1 = $row['rmc_induction_softskill'];
$checked2= $row['rmc_induction_neo'];
$checked3 = $row['rmc_induction_itil'];
$checked4 = $row['rmc_induction_hr_induction'];
$checked5 = $row['rmc_induction_vmware'];
$checked6 = $row['rmc_induction_lss'];
我希望运行一个循环并以一对一的方式运行包含上述所有变量名的单个 html 行。例如,我想要 $checked1 == 1 , $checked2 == 1 。我尝试了下面的代码,但每次循环都无法获得 $checked1
for ($i=1; $i<=33; $i++){
$checked = checked{$i};
echo $checked;
<td align="center" bgcolor="#E6E6FA"> <input type="checkbox" id="<?php echo $i.$rows['emp_id']; ?>" name="Emails[]" value="<?php echo $i.";".$concatenated_string; ?>" <?php if ($checked == 1) echo "checked" ; ?> onclick="check(<?php echo $i.$rows['emp_id']; ?>);" /></td>