Jump to content

insert values from checkboxes to database


cipher143

Recommended Posts

Give them all the same name which should end with "[]"

 

eg

 

<input type='checkbox' name='box[]' value='1'> Choice 1<br>
<input type='checkbox' name='box[]' value='2'> Choice 2<br>

 

The values wil be posted in an array ($_POST['box']).

 

Only checked ones are posted

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.