搜索分页
Posted gwhm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搜索分页相关的知识,希望对你有一定的参考价值。
<link rel="stylesheet" href="__STATIC__/css/bootstrap.min.css"/>
<form action="{:url(‘index/sou‘)}" method="post">
<input type="text" placeholder="请输入管理员名称" name="word"/><input type="submit" value="搜用户"/>
public function sou(){
$word=Request::instance()->param("word");
$res=Db::table("user")
->where("phone","like","%$word%")
->whereOr("name","like","%$word%")
->paginate(3,false,[‘query‘=>request()->param()]);
// print_r($res);
$this->assign(‘list‘, $res);
$count = Db::table("user")->count();
// 渲染模板输出
return $this->fetch("show",[‘arr‘=>$res,‘a‘=>$count]);
}
以上是关于搜索分页的主要内容,如果未能解决你的问题,请参考以下文章