I am having trouble regarding my checkbox delete in codeigniter. I have a form in which a table is displayed and populated with data from the database and there are two submit buttons. The first is the adduser button which I already did.
My problem is that I don't have any idea how to get the value of the checkbox in the displayed table. Here’s the snippet to understand more my problem:
Controller:
public function options()
{
$data['meta_title']="Users";
$data['meta_desc']="Find your friends from our members";
if ($this->input->post('AddUser'))
{
$this->load->view('template/header',$data);
$this->load->view('users/add_view');
$this->load->view('template/footer');
}
elseif($this->input->post('Delete'))
{
/// i have troubles with my logic here
}
}
View:
<?php foreach($query->result_array() as $row): ?>
<tr class="even gradeC">
<td><?php echo anchor('users/edit/'.$row['usrID'],$row['usrName']);?></td>
<td><?php echo $row['usrpFirstName'].' '.$row['usrpLastName'];?></td>
<td><?php echo $row['usrpBday'];?></td>
<td><?php echo $row['usrpSex'];?></td>
<td><?php echo $row['usrpAddress'];?></td>
<td><input type="checkbox" name="checkID[]" id="checkID" value="<?php echo $row['usrID'];?>" />
<label for="checkID"></label></td>
</tr>
<? endforeach; ?>
