Skip to content

Instantly share code, notes, and snippets.

@Tjoosten
Created December 20, 2014 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tjoosten/a9f70d574e8757459b47 to your computer and use it in GitHub Desktop.
Save Tjoosten/a9f70d574e8757459b47 to your computer and use it in GitHub Desktop.
// -----------------------------------------------------------
/**
* Delete()
*
* @param int $this->uri->segment(3)
*/
function Delete() {
$this->db->where('Emplyees_id')
->delete('Eployees');
if($this->db->affected_rows()) {
return TRUE;
} else {
return FALSE;
}
}
// -----------------------------------------------------------
function Edit() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment