<?php
namespace app\index\controller;
use \think\Controller;
use \think\Db;
class Index extends Controller
{
public function index()
{
$search_name = input('search_name');
$search = ['query'=>[]];
$search['query']['search_name'] = $search_name;
$res = Db::name('news_article')->where('title','like',"%{$search_name}%")->paginate(5,false,$search);
$this -> assign('res',$res);
$this->assign('search_name',$search_name);
return $this->fetch();
}
}html代码:<link rel="stylesheet" type="text/css" href="__PUBLIC__/home/css/page.css" />
<form action="{:url('index/index')}" method="post">
<input type="text" name = "search_name" value = "{$search_name}">
<input type="submit" value = "提交">
</form>
<table border = "1px solid black" cellspacing="0">
<tr>
<td>id</td>
<td>title</td>
<td>url</td>
<td>create_time</td>
</tr>
{foreach name = "res" item = "vo"}
<tr>
<td>{$vo.news_id}</td>
<td>{$vo.title}</td>
<td>{$vo.thumb_url}</td>
<td>{$vo.create_time}</td>
</tr>
{/foreach}
</table>
{$res}
ThinkPHP 是一个免费开源的,快速、简单的面向对象的 轻量级PHP开发框架 ,创立于2006年初,遵循Apache2开源协议发布,是为了敏捷WEB应用开发和简化企业应用开发而诞生的。ThinkPHP从诞生以来一直秉承简洁实用的设计原则,在保持出色的性能和至简的代码的同时,也注重易用性。并且拥有众多的原创功能和特性,在社区团队的积极参与下,在易用性、扩展性和性能方面不断优化和改进,已经成长为国内最领先和最具影响力的WEB应用开发框架,众多的典型案例确保可以稳定用于商业以及门户级的开发。