チェックボックスがチェックされているときにdivを表示/再表示する方法を見つけましたが、デフォルトでチェックボックスがチェックされている場合はそうではありません。
<?php
$checked=product_exists($row[ 'serial']) ? ' checked="checked"': '';
echo '<input type="checkbox" '. $checked . '> '. $row[ 'name'] .'<br />';
?>
これがボックスをチェックするコードです。今、私は何かをする必要があります:-チェックボックスがチェックされているかどうかをチェックする->その隠されたdivを表示する
誰かが私を助けてくれることを願っています、ありがとう。
追加コード:
<?php $result=mysql_query( "select * from products"); while($row=mysql_fetch_array($result)){
?>
<div class="column">
<?php $checked=product_exists($row[ 'serial']) ? ' checked="checked"':
''; $serial=$row[ 'serial']; echo '<input type="checkbox" '. $checked .
'> '. $row[ 'name'] . ''. $serial . '<br />'; $result2=mysql_query(
"select * from productsmenus where serial = $serial"); while($row=mysql_fetch_array($result2)){ echo '<div style="'.($checked===''
? 'display: none;' : ''). '"></div>';}?>
</div>
<?php } ?>