наконец я решил свою проблему.Здесь была проблема в $ post Я не могу передать эту переменную в функцию ниже $post=$this->input->post();
`
**before fixing error the was problem here**
`function update_article(){
print_r($this->input->post());
$this->load->model('articlesmodel');
$update_articles=$this->articlesmodel->update_article();
if($update_articles){
}
}`
После исправления ошибки код:
function update_article(){
print_r($this->input->post());
$this->load->model('articlesmodel');
$post=$this->input->post();
$update_articles=$this->articlesmodel->update_article($article_id,$post);
if($update_articles){
}
}
я не объявил $ post в контроллере и не передал 2 param в контроллере $update_articles
После $update_articles=$this->articlesmodel->update_article($article_id,$post)
До $update_articles=$this->articlesmodel->update_article();