how to save multiple checkboxes value in wordpress

Kedar B

This is my code for checkboxes.

<p class="full_form"><label for="prop_category"><?php _e('We are into','wpestate');?></label>
        <input type="checkbox" id="architecture" size="80" name="service_name[]" value="architecture" >Architecture
        <input type="checkbox" id="builder_developer" size="80" name="service_name[]" value="builder_developer">Builders and Developeres
        <input type="checkbox" id="material_supplier" size="80" name="service_name[]" value="material_supplier">Material Supplier
        <input type="checkbox" id="contractor" size="80" name="service_name[]" value="contractor">Contractor
        <input type="checkbox" id="int_decorator" size="80" name="service_name[]" value="int_decorator">Interior Decorator
        <input type="checkbox" id="prop_finance" size="80" name="service_name[]" value="prop_finance">Property Finance
        <input type="checkbox" id="prop_legal_ad" size="80" name="service_name[]" value="prop_legal_ad">Property Legal Advisor
        <input type="checkbox" id="prop_valuer" size="80" name="service_name[]" value="prop_valuer">Property Valuer
        <input type="checkbox" id="vastu_consult" size="80" name="service_name[]" value="vastu_consult">Vaastu Consultant

How Do I save multiple checkboxes in wordpress postmeta table? Should I save them as array? How Do I access them after form submit? And how do I display selected checkbox value while editing??

Ankur Bhadania

try this way Html code

<p class="full_form"><label for="prop_category">We are into</label>
            <input type="checkbox" id="architecture" size="80" name="service_name[]"  value="Architecture" >Architecture
            <input type="checkbox" id="builder_developer" size="80" name="service_name[]"  value="Builders and Developeres">Builders and Developeres
            <input type="checkbox" id="material_supplier" size="80" name="service_name[]" value="Material Supplier">Material Supplier
            <input type="checkbox" id="contractor" size="80" name="service_name[]" value="Contractor">Contractor
            <input type="checkbox" id="int_decorator" size="80" name="service_name[]" value="Interior Decorator">Interior Decorator
            <input type="checkbox" id="prop_finance" size="80" name="service_name[]" value="Property Finance">Property Finance
            <input type="checkbox" id="prop_legal_ad" size="80" name="service_name[]"  value="Property Legal Advisor">Property Legal Advisor
            <input type="checkbox" id="prop_valuer" size="80" name="service_name[]"  value="Property Valuer">Property Valuer
            <input type="checkbox" id="vastu_consult" size="80" name="service_name[]" value="Vaastu Consultant">Vaastu Consultant

Submit code for save

<?php 
        //submit code 
          if(isset($_POST['service_name'])  ){
              $data=serialize($_POST['service_name']);

              update_post_meta($postid, 'service_name', $data);
          }
        ?>

Edit code

<?php 
        //edit code

            $data=get_post_meta($postid, 'service_name');
            //$data=unserialize($data[0]);
            $data=$data[0];
            print_r($data);

        ?> 

        <input type="checkbox" id="architecture" size="80" name="service_name[]"  value="Architecture" <?php if(in_array('Architecture',$data)  ){echo "checked";} ?> >Architecture



//other checkbox put as this 

in_array check it

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to save multiple checkboxes value in wordpress

From Dev

wordpress save multiple value from select item

From Dev

how to get the value of multiple unselected checkboxes in php?

From Dev

Android save states of multiple CheckBoxes

From Dev

Javascript Save Multiple Checkboxes with LocalStorage

From Dev

How to pass the values of multiple checkboxes checked value using JQuery to a URL

From Dev

How to get an added value from multiple checkboxes in javascript/jquery?

From Dev

How to validate multiple checkboxes

From Dev

Save the value of checked checkboxes in an array on submit Ionic

From Dev

How to save multiple checkbox on update post meta in wordpress?

From Dev

How to save multiple checkbox on update post meta in wordpress?

From Dev

how to save multiple checkbox values in custom metabox in wordpress plugin?

From Dev

How to check multiple checkboxes with JavaScript?

From Dev

How to use multiple checkboxes in jmeter?

From Dev

how to manage multiple checkboxes in ember?

From Dev

How to save checked input checkboxes to MySQL?

From Dev

How to save checked input checkboxes to MySQL?

From Dev

How to find value of checkboxes in PHP?

From Dev

storing multiple checkboxes value in a variable or array

From Dev

Get value of multiple choices checkboxes Javascript

From Dev

storing multiple checkboxes value in a variable or array

From Dev

How to Show or Hide multiple divs with multiple checkboxes

From Java

How do i sum data-price value from multiple checkboxes to exsiting function?

From Dev

multiple checkboxes. only one is selected. how to get its value

From Dev

how to get and pass multiple checkboxes value to server side (php) through controller using angularjs

From Dev

How to save multiple listbox value into single textfile C#

From Dev

how to check multiple buttons click and save the value in database?

From Dev

How to save multiple listbox value into single textfile C#

From Dev

How to save rows of multiple buttons value to localstorage in angularjs and ionic

Related Related

  1. 1

    how to save multiple checkboxes value in wordpress

  2. 2

    wordpress save multiple value from select item

  3. 3

    how to get the value of multiple unselected checkboxes in php?

  4. 4

    Android save states of multiple CheckBoxes

  5. 5

    Javascript Save Multiple Checkboxes with LocalStorage

  6. 6

    How to pass the values of multiple checkboxes checked value using JQuery to a URL

  7. 7

    How to get an added value from multiple checkboxes in javascript/jquery?

  8. 8

    How to validate multiple checkboxes

  9. 9

    Save the value of checked checkboxes in an array on submit Ionic

  10. 10

    How to save multiple checkbox on update post meta in wordpress?

  11. 11

    How to save multiple checkbox on update post meta in wordpress?

  12. 12

    how to save multiple checkbox values in custom metabox in wordpress plugin?

  13. 13

    How to check multiple checkboxes with JavaScript?

  14. 14

    How to use multiple checkboxes in jmeter?

  15. 15

    how to manage multiple checkboxes in ember?

  16. 16

    How to save checked input checkboxes to MySQL?

  17. 17

    How to save checked input checkboxes to MySQL?

  18. 18

    How to find value of checkboxes in PHP?

  19. 19

    storing multiple checkboxes value in a variable or array

  20. 20

    Get value of multiple choices checkboxes Javascript

  21. 21

    storing multiple checkboxes value in a variable or array

  22. 22

    How to Show or Hide multiple divs with multiple checkboxes

  23. 23

    How do i sum data-price value from multiple checkboxes to exsiting function?

  24. 24

    multiple checkboxes. only one is selected. how to get its value

  25. 25

    how to get and pass multiple checkboxes value to server side (php) through controller using angularjs

  26. 26

    How to save multiple listbox value into single textfile C#

  27. 27

    how to check multiple buttons click and save the value in database?

  28. 28

    How to save multiple listbox value into single textfile C#

  29. 29

    How to save rows of multiple buttons value to localstorage in angularjs and ionic

HotTag

Archive