Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AndriyShepitsen/5558661 to your computer and use it in GitHub Desktop.
Save AndriyShepitsen/5558661 to your computer and use it in GitHub Desktop.
function_newsAddMethod_controllers
public function newsAddMethod()
{
$newsTitle = $this->input->post('newsTitle');
$newsBody = $this->input->post('newsBody');
$success = $this->md_news->addNews($newsTitle, $newsBody);
if ($success){
redirect('Legal-News-Chicago-North-Suburbs/Judicial-Important-Information');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment