我在数据库中有一个表,其中保存了关键字/标题/描述。现在我想在控制器函数 :::: 中获取数据(内容)
如何从数据库中获取数据到控制器的函数 ::::
public function index()
{
$data=array();
$data['title']=" Title "; // need the title dynamic
$data['keywords']="Keywords"; // need the keyword dynamic
$data['keywords']="Description"; // need the description dynamic
}