<tbody>
<?php if(!empty($tarimas)): ?>
<?php foreach($tarimas as $tarimas): ?>
<tr role="row" class="odd">
<td tabindex="0" class="sorting_1">
<input type="hidden" value="<?php echo $tarimas->id;?>" name='inputseleccion[]'><?php echo $tarimas->id; ?>
</td>
<td class="inputpeso"><?php echo $tarimas->peso; ?> kgs</td>
<td class="inputcajas"><?php echo $tarimas->cajas; ?> cajas</td>
<td>
<div class="checkbox">
<label>
<input type="checkbox" value="" name='inputselect[]' class="chkseleccion"> Añadir
</label>
</div>
</td>
</tr>
<?php endforeach; ?>
I bring my ids $tarimas = $this->input->post('inputseleccion');
I have an array of checkbox called inputselect[]
can be seen. But as valid if checked from my controller?