我必须在重定向之前显示消息,并且必须没有标题刷新 - 因为我无法在我的主机上使用它。我是用JavaScript编写的,但如果有人没有启用JavaScript会怎么样?哪种方式适合这种情况?这是我的控制者:
public function code_check()
{
$this->form_validation->set_rules('code', 'Code', 'trim|required');
if ($this->form_validation->run()==FALSE)
{
$this->index();
}
else
{
if($this->user_model->code_check()) {
redirect('index/results_show');
} else {
echo "Wrong code!";
echo "<script>setTimeout(\"location.href = '/survey/index.php/home/index/';\",1500);</script>";
}
}
}
&#13;