thinkphp如何在不同的Action类的不同函数之间传值
我用ThinkPHP做登录页面.
登陆页面提交表单到action="__APP__/Index/login_do" ,然后我在IndexAction类里面写了login_do函数:
public function login_do()
{
if($_SESSION['verify'] != md5($_POST['userauthcode']))
{
$this->error('验证码错误!');
}
$username=$_POST['username'];
$password=$_POST['password'];
$password=md5($password);
$user=M('user');
$res=$user->where("user_name='$username' && password='$password'")->find();
if($res)
{
redirect('../Home/home',1,"