摘要: 、、、、、、、、、、控制器方法 public function index() { //接受搜索关键字 $word=input('word'); $where=[]; if (!empty($word)){ $where['title']=['like',"%".$word."%"]; } $dat 阅读全文
posted @ 2021-08-13 22:05 王越666 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 、、、、控制器方法返回视图 public function create() { // return view(); } 、、、、、、、、、、、、、、、表单页面 <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title 阅读全文
posted @ 2021-08-13 21:59 王越666 阅读(91) 评论(0) 推荐(0) 编辑
摘要: <?php namespace app\Admin\controller; use think\Controller; use think\Loader; use think\Request; class Login extends Controller { //登录 public function 阅读全文
posted @ 2021-08-13 21:51 王越666 阅读(85) 评论(0) 推荐(0) 编辑