使用Live Writer 写博客测试

大家好,我是SAKI

试下图片

大魔王


	/**
	 * 用户登录
	 */
	public function login() {
		$User = M ( 'user' ); // 实例化Data数据模型
		$map['account'] = $_POST['account'];
		$data = $User->where($map)->select ();
		$nickName = $data[0]['nickname'];
		if(!empty($data)){
			$this->assign('nickName',$nickName);
			$this->display('home');
		}else{
			$this->display('error');
		}
	}

测试

你可能感兴趣的:(使用Live Writer 写博客测试)