lunielism

Untitled

Dec 26th, 2023
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3.  
  4. class LunaController extends CI_Controller {
  5.  
  6. public function index() {
  7. $data['title'] = "Profil Clarissa Luna Maheswari";
  8. $this->load->view('luna_view', $data);
  9. }
  10.  
  11. public function contact() {
  12. $data['title'] = "Hubungi Saya - Clarissa Luna Maheswari";
  13. $this->load->view('contact_view', $data);
  14. }
  15.  
  16. public function voting() {
  17. $data['title'] = "Website Demo Voting - Clarissa Luna Maheswari";
  18. $this->load->view('voting_view', $data);
  19. }
  20. }
  21.  
Add Comment
Please, Sign In to add comment