MinecraftAccount/Application/Home/Controller/IndexController.class.php

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