1
0
mirror of https://e.coding.net/circlecloud/MinecraftAccount.git synced 2024-11-17 00:58:55 +00:00
MinecraftAccount/Application/Home/Controller/IndexController.class.php
502647092 6dd800f2e2 移除无用文件 添加用户控制器...
Signed-off-by: 502647092 <jtb1@163.com>
2015-11-05 20:23:14 +08:00

11 lines
234 B
PHP

<?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();
}
}