Created
May 11, 2013 02:18
-
-
Save AndriyShepitsen/5558661 to your computer and use it in GitHub Desktop.
function_newsAddMethod_controllers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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