<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Description of test
*
* @author phonh
*/
class Test extends CI_Controller {
public function __construct(){
parent::__construct();
}
public function index(){
$this->load->view('demo');
}
public function data(){
echo $this->input->post('data1').$this->input->post('data2');
echo "sssssssssssssss";
}
}
?>