agung_indra_wijaya

calkulator

Jan 17th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3.  
  4. class Calculator extends CI_Controller {
  5.  
  6. public function __construct()
  7.     {
  8.         parent::__construct();
  9.         $this->load->helper('url');
  10.         $this->load->library('input'); 
  11.     }
  12.  
  13.     public function index()
  14.     {
  15.         $this->load->view('form_hitung');
  16.     }
  17.  
  18. }
Add Comment
Please, Sign In to add comment