Welcome Guest, Not a member yet? Register   Sign In
form post not working
#19

[eluser]mi6crazyheart[/eluser]
ok , try this controller...

Code:
class Order extends Controller {

    function Order()
    {
        parent::Controller();
        $this->load->helper('url');
        //$this->load->helper('form');
    }
    
    function index()
    {
        $data['query'] = $this->db->get('Reviews');
        $this->load->view('order_process', $data);
    }
    
    function process()
    {    
        $this->load->helper(array('form', 'url'));

        $revw_name = $this->input->post('revw_name');
$revw_text = $this->input->post('revw_text') ;

$this->db->set('revw_name', $revw_name); // DB_table_filed_name = respective DB table  filed name where value need to be store
$this->db->set('revw_text', $revw_text); //
$this->db->insert('Reviews');
        
        
}
}


Messages In This Thread
form post not working - by El Forum - 09-02-2010, 02:10 PM
form post not working - by El Forum - 09-02-2010, 09:31 PM
form post not working - by El Forum - 09-02-2010, 10:01 PM
form post not working - by El Forum - 09-02-2010, 11:16 PM
form post not working - by El Forum - 09-02-2010, 11:26 PM
form post not working - by El Forum - 09-02-2010, 11:41 PM
form post not working - by El Forum - 09-02-2010, 11:48 PM
form post not working - by El Forum - 09-02-2010, 11:54 PM
form post not working - by El Forum - 09-03-2010, 12:09 AM
form post not working - by El Forum - 09-03-2010, 12:30 AM
form post not working - by El Forum - 09-03-2010, 12:36 AM
form post not working - by El Forum - 09-03-2010, 12:53 AM
form post not working - by El Forum - 09-03-2010, 12:57 AM
form post not working - by El Forum - 09-03-2010, 12:57 AM
form post not working - by El Forum - 09-03-2010, 01:05 AM
form post not working - by El Forum - 09-03-2010, 01:11 AM
form post not working - by El Forum - 09-03-2010, 01:19 AM
form post not working - by El Forum - 09-03-2010, 01:28 AM
form post not working - by El Forum - 09-03-2010, 03:10 AM
form post not working - by El Forum - 09-03-2010, 10:31 AM
form post not working - by El Forum - 09-06-2010, 12:09 AM



Theme © iAndrew 2016 - Forum software by © MyBB