简体   繁体   中英

Select Value from DB Array inside check box input

Hello I am using various check boxes with different values and than storing the vales inside DataBase as all the checkboxes values are store inside Array

<input type="checkbox" value="Gym" id="details_10" name="utilities[]">
<input  type="checkbox" value="Spa" id="details_11" name="utilities[]">

and than store in the database like: Gym, Spa.

Later I am making MySQL query inside edit form where I will be able to edit those and other parameters. For the other inputs I am using:

<?php if($row['data'] == 'Sample Data'){echo 'selected="selected"';}?>

In this case I would like to use something like the following:

<input  type="checkbox" value="Gym" id="details_10" name="utilities[]"<?php if($row['utilities'] == 'Gym'){echo 'checked"';}?>>

Any help to achieve this result will be very welcome.

I've always used this in these cases.

<?php
if($row['utilities'] == 'Gym')
{
    ?>
    <input  type="checkbox" value="Gym" id="details_10" name="utilities[]" checked="checked">
    <?php
}
else
{
    ?>
    <input  type="checkbox" value="Gym" id="details_10" name="utilities[]">
    <?php
}
?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM