Skip to content

Instantly share code, notes, and snippets.

@AndriyShepitsen
Created May 11, 2013 02:15
Show Gist options
  • Save AndriyShepitsen/5558651 to your computer and use it in GitHub Desktop.
Save AndriyShepitsen/5558651 to your computer and use it in GitHub Desktop.
function_addNews_models
public function addNews($title, $body)
{
$arrInsertValues = array('title'=>$title, 'body'=>$body);
$success = $this->db->insert('news', $arrInsertValues);
return $success;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment