メインの表示されているチェックボックスがオンになっているときに、2 つの非表示のチェックボックスを自動的にオンまたはオフにする必要があります。3 つのチェックボックスは while サイクル内にあります。
説明させてください。これが私のフォームです。
<form action="updateAuc.php" method="POST" name="edit">
<div class="editbutton">
<ul>
<li class="leditcnt"><input class="submitbutton" type="submit" name="edit" value="Aggiorna Trasferimenti" /></li>
<li class="lremove"><a href="auctionfree_list.php"><input name="Button" type="button" class="linkbutton" value="Annulla" /></a></li>
</ul>
</div>
<table width = "100%">
<tr class="title">
<td class="head">Player</td>
<td class="head">Action</td>
<td class="head">Win</td>
</tr>
<?php do { ?>
<tr>
<td class="table1"><?php echo $row_dataauc['playerName']; ?></td>
<td class="table1"><?php echo $row_dataauc['amount']; ?> - <?php echo $row_dataauc['teambid']; ?></td>
<td class="table1">
<input name="enable[]" class="inputfield" type="checkbox" value="<?php echo $row_dataauc['aucid']?>"/>
<input name="enable2[]" class="inputfield" style="display:none" type="checkbox" value="<?php echo $row_dataauc['id']?>"/>
<input name="enable3[]" class="inputfield" style="display:none" type="checkbox" value="<?php echo $row_dataauc['coachID']?>"/>
</td>
</tr>
<?php } while ($row_dataauc = mysqli_fetch_assoc($dataauc)); ?>
</table>
</form>
name="enable[]" がメインです。これをチェックすると、name="enable2[]" と name"enable3[]" も自動的にチェックされます。