ThinkPHP開發筆記-用戶登陸註冊

一、修改模塊配置,Application/當前模塊名/Conf/config.phpphp

<?php
return array(
    //數據庫配置信息
'DB_TYPE'   => 'mysql', // 數據庫類型
'DB_HOST'   => 'localhost', // 服務器地址
'DB_NAME'   => 'thinkphp', // 數據庫名
'DB_USER'   => 'root', // 用戶名
'DB_PWD'    => '', // 密碼
'DB_PORT'   => '', // 端口
'DB_PREFIX' => 'think_', // 數據庫表前綴 
'DB_CHARSET'=> 'utf8', // 字符集
'DB_DEBUG'  =>  TRUE, // 數據庫調試模式 開啓後能夠記錄SQL日誌 3.2.3新增
);

二、打開 Home/Controller/IndexController.class.php ,修改 index 函數。html

public function index(){
    $this->display();
}

三、打開 /Home/View/index/index.html ,定義登陸的url,添加Form。mysql

<?php
$actUrl="\"".U('index/Login',"")."\""; //ThinkPHP內置的U方法,用於URL的動態生成
?>
<form action=<?php echo $actUrl?> method="post">
  <p>UserName: <input type="text" name="username" /></p>
  <p>Password: <input type="text" name="password" /></p>
  <input type="submit" value="Submit" />
</form>

四、打開 Home/Controller/IndexController.class.php ,添加 login 函數。sql

public function Login()
{
    $inputname=I('post.username'); //獲取Form數據
    $inputpwd=I('post.password');  //I方法是ThinkPHP用於更加方便和安全的獲取系統輸入變量
    
    $User = M('User');   //使用M方法實例化的話,因爲不須要加載具體的模型類,因此性能會更高
    $condition['username'] = $inputname;
    $userinfo=$User->where($condition)->select(); //使用數組做爲查詢條件

    if(0==count($userinfo[0]))
      echo "登錄失敗,不存在此用戶名";
    else{
        if($inputpwd!=$userinfo[0]['password'])
            echo "登錄失敗,密碼錯誤!".$userinfo[0]['password'];
        else
        {
        echo "用戶名:".I('post.username')."密碼:".$userinfo[0]['password'];
        }
    }        
}

 五、註冊用戶,就是獲取表單提交的數據,將其添加到數據庫表。thinkphp

public function RegisterInfo()
{
    $username=I('post.username');
    $password=I('post.password');

    $User = M('User');
    $data['username'] = $username;
    $data['password'] = $password;
    $User->add($data);   //ThinkPHP的數據寫入操做使用add方法
    echo "註冊成功";        
}
相關文章
相關標籤/搜索