Skip to content

Instantly share code, notes, and snippets.

@AngeloR
Created April 29, 2011 17:17
Show Gist options
  • Save AngeloR/948647 to your computer and use it in GitHub Desktop.
Save AngeloR/948647 to your computer and use it in GitHub Desktop.
Lemondoo - delete_todo
<?php
function delete_todo($id) {
if(is_numeric($id) && !empty($id)) {
$sql = 'delete from todo where todo_id = '.$id;
return json(db($sql));
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment