document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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.  
');