我创建了一个基于Grocery Crud的网站,它运行良好。想象一下,如果我有一个如下表:
id |名字|年龄
1 | x | 12
2 | y | 20
3 | z | 12
然后,我做了这个查询"年龄= 12",Grocery Crud给出了结果:
id |名字|年龄
1 | x | 12
3 | z | 12
问题是如何从此Grocery CRUD查询结果创建新表? 感谢
答案 0 :(得分:0)
你应该使用where函数,如下所示:
public function ages_12()
{
$crud = new grocery_CRUD();
$crud->where('age',12);
$crud->set_table('table_name');
$output = $crud->render();
$this->_view_output($output);
}