Below I show the code that I use to call a function after performing the function I use a redirect for the home page, but I'm trying to make a modicada in it because if the user uses some filter when executing this function he would lose the filters, I work to find the records every time, so I want to know if I have any way to direct the user to the previous page with their filters?
Function:
function inserir_coment(){
$this->template->set('title', 'Novo Comentario');
/* Carrega a biblioteca do CodeIgniter responsável pela validação dos
formulários */
$this->load->library('form_validation');
/* Define as tags onde a mensagem de erro será exibida na página */
$this->form_validation->set_error_delimiters('<span>', '</span>');
/* Define as regras para validação */
$this->form_validation->set_rules('comentdate', 'Data', 'required');
$this->form_validation->set_rules('nomeC', 'Cliente', 'required');
$this->form_validation->set_rules('texto', 'Texto', 'required');
$this->form_validation->set_rules('autor', 'Autor', 'required');
/* Executa a validação e caso houver erro chama a função index do controlador */
if ($this->form_validation->run() === FALSE) {
$this->template->load('layout', 'inserir_coment.phtml');
/* Senão, caso sucesso: */
} else {
/* Recebe os dados do formulário (visão) */
$data['comentdate'] = $this->input->post('comentdate');
$data['cliente'] = $this->input->post('nomeC');
$data['texto'] = $this->input->post('texto');
$data['autor'] = $this->input->post('autor');
/* Chama a função inserir do modelo */
if ($this->model->inserir_coment($data)) {
$this->session->set_flashdata('mensagem', "<div class='alert alert-success'> Comentario inserido com sucesso</div>");
redirect('comments');
} else {
$this->session->set_flashdata('mensagem', "<div class='alert alert-danger'> Erro ao inserir comentario</div>");
}
}
}