我必须通过重定向访问一个功能
我使用此代码
function email_check()
{
$email=$this->input->post('email');
$data = array(
'user_email' =>$email,
);
$result = $this->UM->email_verify($data);
echo $result;
if($result)
{
$date = date(Y-m-d);
$string = $email."-".$date;
$encrypted_string = md5($string);
echo $encrypted_string;
$res=$this->UM->insert_key($encrypted_string,$result);
redirect(base_url()."user/pass_confirmation/".$encrypted_string.'/'.$email);
}
}
但没有工作
这里的问题是什么
redirect(base_url()."user/pass_confirmation/".$encrypted_string.'/'.$email);
此链接正确但视图页面未显示在该功能中 我怀疑是通过网址传递了一封电子邮件
没有这个显示我的视图页面
我认为这是一个不同的问题,我在询问如何通过重定向传递加密密钥和电子邮件