how to insert multiple checkbox values as successive rows in mysql codeigniter
-
employer_rgn.php <div class="form-group"> <label for="" class="control-label col-xs-2"> <?php echo $this->lang->line('spclzd_ctgry'); ?> </label> <div class=" col-md-8"> <input type="checkbox" name="spec_cat[]" value="Information Technology"> Information Technology <input type="checkbox" name="spec_cat[]" value="Engineering / Manufacturing">Engineering / Manufacturing <br /> <input type="checkbox" name="spec_cat[]" value="Banking & Financial Services"> Banking & Financial Services <input type="checkbox" name="spec_cat[]" value="BPO / ITES"> BPO / ITES <br /> <input type="checkbox" name="spec_cat[]" value="FMCG / Retail"> FMCG / Retail <input type="checkbox" name="spec_cat[]" value="Telecom / ISP"> Telecom / ISP <br /> <input type="checkbox" name="spec_cat[]" value="Pharmaceuticals / Health Care"> Pharmaceuticals / Health Care <input type="checkbox" name="spec_cat[]" value="Sales & Marketing"> Sales & Marketing <br /> <input type="checkbox" name="spec_cat[]" value="Other Non IT"> Other Non IT </div> </div> employer_model public function insert() { //Insert second stage details for employer into database. $Specilized_category = $this->input->post('spec_cat'); $data=array('Specilized_category'=>implode(",", $Specilized_category),); $this->db->insert('tbl_employer', $data); I'm inserting check box values into database separated by commas. But the problem is, I need to get back the checked values from database in order to edit my code. How could I get those values as I had used the implode method? Or do I have to change my code for inserting values into database?
-
Answer:
when you implode it create an array so its type can be array when it try to insert in to mysql. but you can store multiple values after converting in to string or json string. Like... public function insert() { //Insert second stage details for employer into database. $Specilized_category = $this->input->post('spec_cat'); $data=array( 'Specilized_category'=>json_encode(implode(",", $Specilized_category)), ); $this->db->insert('tbl_employer', $data); Try it and let me know if you facing any problem while inserting.. ['}
Hanan Ashraf at Stack Overflow Visit the source
Related Q & A:
- How To Insert Wood Stove?Best solution by youtube.com
- How to insert capital letters to Mysql?Best solution by stackoverflow.com
- How to insert data in db using jsp?Best solution by Yahoo! Answers
- How to store multiple record in Mysql variable?Best solution by Stack Overflow
- How can display multiple values to single column?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.