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

11 lines
234 B
PHP
Raw Normal View History

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