在Php / MySQL中复选框编辑/更新表单

时间:2018-03-13 21:50:18

标签: php

我有多个复选框值存储在我的数据库的一个列中(示例猫,狗或狗,奶牛等。它被检索为$ animals并爆炸以比较值。

            $animal_values = explode(",", $animals);
             $cat = "cat";
              $dogs = "dogs";
              $cow = "cow";
              foreach($animal_values as $value) {


                if( $value ==  $cat ){
                  echo '<li>
                  <input type="checkbox" id="cat" checked="checked"  name="animals[]" value="cat" />
                  <label for="cat">Cat</label>
                  </li>';
                }
                if( $value ==  $dogs ){
                  echo '<li>
                  <input type="checkbox" id="dogs" checked="checked"  name="animals[]" value="dogs" />
                  <label for="dogs">dogs</label>
                  </li>';
                }
                if( $value ==  $cow ){
                echo '<li>
                <input type="checkbox" id="cow" checked="checked"  name="animals[]" value="cow" />
                <label for="cow">cow</label>
                </li>';
                }

这样,存在的值显示为选中的复选框。

但问题是我还想显示其值不作为未选中框的框。我怎么能实现这个?

1 个答案:

答案 0 :(得分:0)

              <?php
              $animal_value = explode(",", $animal);

              echo '<li>
              <input type="checkbox" id="cat"';?> <?php  if (in_array("cat", $animal_value))  {  echo 'checked="checked"';  } ?> <?php echo 'name="animal[]" value="cat" />
              <label for="cat">Cat</label>
              </li>';

              echo '<li>
              <input type="checkbox" id="dog"';?><?php   if (in_array("dog", $animal_value))  {  echo 'checked="checked"';  } ?> <?php echo ' name="animal[]" value="dog" />
              <label for="dog">Dog</label>
              </li>';

              echo '<li>
              <input type="checkbox" id="cow"';?><?php   if (in_array("cow", $animal_value))  {  echo 'checked="checked"';  } ?> <?php echo 'name="animal[]" value="cow" />
              <label for="cow">COW</label>
              </li>';

             ?>

任何改进建议或任何其他方法欢迎。