Welcome Guest, Not a member yet? Register   Sign In
deleting a row using checkbox
#8

[eluser]radomir_radojevic[/eluser]
Hi ninja Smile

try this

model function:

Code:
public function delete()
{
                
   $delete = $this->input->post('delete');                
    for($i=0;$i<count($delete);$i++) {
    $del_bm_URL = $delete[$i];
    $this->db->where('bm_URL',$del_bm_URL);
        $this->db->delete('bookmark');        
        }                        
  }


Messages In This Thread
deleting a row using checkbox - by El Forum - 01-29-2010, 04:07 AM
deleting a row using checkbox - by El Forum - 01-29-2010, 04:23 AM
deleting a row using checkbox - by El Forum - 01-29-2010, 04:48 AM
deleting a row using checkbox - by El Forum - 01-29-2010, 04:51 AM
deleting a row using checkbox - by El Forum - 01-29-2010, 05:04 AM
deleting a row using checkbox - by El Forum - 01-29-2010, 05:08 AM
deleting a row using checkbox - by El Forum - 01-29-2010, 05:13 AM
deleting a row using checkbox - by El Forum - 02-20-2010, 05:28 PM
deleting a row using checkbox - by El Forum - 02-20-2010, 09:42 PM
deleting a row using checkbox - by El Forum - 02-12-2011, 02:10 PM



Theme © iAndrew 2016 - Forum software by © MyBB