16 lines
386 B
PHP
16 lines
386 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Profil extends CI_Controller {
|
|
|
|
public function index()
|
|
{
|
|
$data = array( 'title' => 'Data Pengguna User',
|
|
'content' => 'profil/index'
|
|
);
|
|
$this->load->view('layout/wrapper', $data, FALSE);
|
|
}
|
|
}
|
|
|
|
/* End of file Profil.php */
|
|
/* Location: ./application/controllers/Profil.php */ |