Jump to content

[SOLVED] Store all selected checkbox ids


deezy

Recommended Posts

Hello

 

I have a repeating table with a checkbox at the end of each row. The checkboxes are dynamically assigned a different name:

 

<input type="checkbox" name="checkbox" id="<? echo $row_details['id']; ?>" value="<? echo $row_details['id']; ?>"

 

Upon submission of the form how can i go through the checkboxes and for each checked item i need to order them like (id1,id3,id7,id9) and store the whole string into my database?

 

thanks for any help

Link to comment
Share on other sites

The HTML should be like this

<input type="checkbox" name="checked[]" id="<? echo $row_details['id']; ?>" value="<? echo $row_details['id']; ?>"

 

I changed the name to checked[]. That will be the array all the ID's are stored in.

 

Now to get all the values, just use a foreach loop:

 

<?php

foreach ($_POST['checked'] as $id){
   echo $id.'<br>';
}

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.