我试图在我的卡片中计算数据库中的项目数,但它不起作用。
这是我的家.html
我的约会对象已经包括在内了
<div class="content">
<div class="text">ITEMS</div>
<div class="number count-to" data-from="0" data-to="<?= $active_properties; ?>" data-speed="1000" data-fresh-interval="20"></div>
</div>
这是我的家庭模型
public function get_active_properties(){
return $this->db->count_all('ci_properties');
}
我的控制器在家
public function __construct(){
parent::__construct();
$this->load->model('user/home_model','home_model');
}
public function index(){
$lista = $this->home_model->listAll();
$dados = array("ci_properties" => $lista);
$dados['active_properties'] = $this->home_model->get_active_properties();
$dados['title'] = 'Home';
$dados['view'] = 'user/home/home';
$this->load->view('layout', $dados);
}
1条答案
按热度按时间p5fdfcr11#
我就这样解决了