Last active
May 18, 2021 13:39
-
-
Save ihsanbudiman/8584434d25ef95318aca5c6550379181 to your computer and use it in GitHub Desktop.
Tutorial Post data CodeIgniter menggunakan Jquery Ajax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
defined('BASEPATH') or exit('No direct script access allowed'); | |
class Controller_kalian extends CI_Controller | |
{ | |
function __construct() | |
{ | |
parent::__construct(); | |
$this->load->library('form_validation'); | |
} | |
public function index() | |
{ | |
$this->load->view('view_kalian'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment