All pastes #2074734 Raw Edit

Miscellany

public php v1 · immutable
#2074734 ·published 2011-06-04 21:09 UTC
rendered paste body
  public function add() {      $this->load->helper('form');        if ($this->input->post('heading') && $this->input->post('content'))    {      $this->load->model('Blogmodel');            $heading = $this->input->post('heading');      $content = $this->input->post('content');            $this->Blogmodel->insert_post($heading, $content);            redirect('/blog', location);    }        $this->load->view('add');  }