elseif($aulas_professor[0]['controle_aula'] == 0){
$desativado = $this->session->set_flashdata('desativado', "O Professor selecionado Não está ativado ,ative-o e tente novamente!");
return $this->calendario($desativado);
}
elseif($aulas_professor[0]['controle_aula'] == 0){
$desativado = $this->session->set_flashdata('desativado', "O Professor selecionado Não está ativado ,ative-o e tente novamente!");
return $this->calendario($desativado);
}
No need. The documentation informs you that this type of data is self-destructive. of the documentation, in free translation):
CoedIgniter supports flashdata, or session data that is only available for the next request and will be automatically deleted.
If you are using the set_flashdata()
method of the session library to mark, you no longer need to do anything to delete that data.