project-ppl/application/controllers/Profil.php

15 lines
430 B
PHP

<?php
class Profil extends CI_Controller{
function __construct(){
parent::__construct();
$this->load->model('m_pengunjung');
$this->m_pengunjung->count_visitor();
}
function index(){
$x['tot_guru']=$this->db->get('tbl_guru')->num_rows();
$x['tot_files']=$this->db->get('tbl_files')->num_rows();
$x['tot_agenda']=$this->db->get('tbl_agenda')->num_rows();
$this->load->view('depan/v_profil',$x);
}
}