mirror of
https://e.coding.net/circlecloud/MinecraftAccount.git
synced 2025-11-24 21:26:09 +00:00
@@ -1,11 +1,27 @@
|
||||
<?php
|
||||
namespace Home\Controller;
|
||||
use Think\Controller;
|
||||
class IndexController extends Controller {
|
||||
public function index(){
|
||||
$data=M('authme')->select();
|
||||
dump($data);
|
||||
$this->data->$data;
|
||||
$this->display();
|
||||
}
|
||||
<?php
|
||||
|
||||
namespace Home\Controller;
|
||||
|
||||
use Think\Controller;
|
||||
|
||||
class IndexController extends Controller {
|
||||
public function Login($username="", $password="", $verify = null) {
|
||||
if(IS_POST){
|
||||
$User = A ( 'User' );
|
||||
$te = $User->Login ( $username, $password, $verify );
|
||||
dump ( $te );
|
||||
$this->display ();
|
||||
}
|
||||
|
||||
}
|
||||
/* 退出登录 */
|
||||
public function Logout() {
|
||||
if (is_login ()) {
|
||||
session ( 'user', null );
|
||||
session ( '[destroy]' );
|
||||
$this->success ( '退出成功!', U ( 'login' ) );
|
||||
} else {
|
||||
$this->redirect ( 'login' );
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user