php - checkbox group don't work - codeigniter -


i'm using codeigniter , need work checkbox group. in view:

<fieldset>     <input type="checkbox" id="country" name="country[]" value="cat" />cats <br />     <input type="checkbox" id="country" name="country[]" value="dog" />dogs<br /> </fieldset>   

in controller:

foreach ($this->input->post('country') $country) {     echo $country; };   

when i'm check or not check - echo "";

try this

<fieldset>     <input type="checkbox" id="country" name="country" value="cat" />cats <br />     <input type="checkbox" id="country" name="country" value="dog" />dogs<br />     </fieldset>  

Comments

Popular posts from this blog

mysql - How to unscape text from database in android studio -

php - Admin SDK -- get information about the group -

Making CSS Drop Down Menu 2 Columns -