Files
dyzulk-apps/application/controllers/Forms.php
2023-09-21 23:32:36 +07:00

19 lines
380 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Forms extends CI_Controller {
public function index()
{
$data['title'] = 'Forms';
$data['user'] = $this->db->get_where('users_account', ['email' => $this->session->userdata('email')])->row_array();
$this->load->view('partials/01header', $data);
$this->load->view('forms', $data);
}
}