I have a problem at the time of hosting a college job, the problem is this one:
Onthelocalhostthiserrordoesnotappear.
Theerrormentionedinline98ofthethemecode/topisthis
<?phpif($this->session->flashdata('success')!=null){?><divclass="alert alert-success">
<button type="button" class="close" data-dismiss="alert">×</button>
<?php echo $this->session->flashdata('success');?>
</div>
<?php }?>
<?php if(isset($view)){echo $this->load->view($view);}?>
The Mapos controller code is this:
public function index() {
$this->data['ordens'] = $this->mapos_model->getOsAbertas();
$this->data['produtos'] = $this->mapos_model->getProdutosMinimo();
$this->data['os'] = $this->mapos_model->getOsEstatisticas();
$this->data['estatisticas_financeiro'] = $this->mapos_model->getEstatisticasFinanceiro();
$this->data['menuPainel'] = 'Painel';
$this->data['view'] = 'mapos/painel';
$this->load->view('tema/topo', $this->data);
}
The last error is from an index file of codeigniter, which I did not modify anything, because it is default. I can not find what is giving this error, all applications are working normally, but if this error does not disappear, the teacher will not accept the work. He already warned that the application has to be working in the hosting. What can I do to get rid of this error, since it is not giving anything to the application?