Skip to content

Instantly share code, notes, and snippets.

@anjanawijesundara
Created April 25, 2015 15:59
Show Gist options
  • Save anjanawijesundara/792f9837f38099732ad2 to your computer and use it in GitHub Desktop.
Save anjanawijesundara/792f9837f38099732ad2 to your computer and use it in GitHub Desktop.
Getting Start with Codeigniter by creating a CRUD application [Customer.php part 4 delete method]
public function delete($username = NULL){
$this->customer_model->delete_customer($username);
$this->load->view('customer/success');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment