Welcome Guest, Not a member yet? Register   Sign In
Active Record "insert" is not working properly
#11

[eluser]appleboy[/eluser]
Opera and Chrome are working now, so IE can't work?

You can try the following model code:

controller:
Code:
<?php
public function process()
{
        $this->load->helper('security');
        $username = $this->input->post("username");
        $passwd = do_hash($this->input->post("password"));
        $email = $this->input->post("email");    
        $data = array(
            "username" => $username,
            "passwd" => $passwd,
            "email" => $email,
        );
        $this->load->model('members');
        $this->members->register($data);  
        $this->data['title'] = "Registration done!";
        $this->data['msg'] = "A private key of your account has been sent to your email address. Please, enter it in below form to confirm your account.";
            $this->template->render($this->data);
}
?>

Model
Code:
<?php
class Members extends CI_Model {
    public function register($data){
        $this->db->insert('mytable', $data);  
    }
}
?>


Messages In This Thread
Active Record "insert" is not working properly - by El Forum - 07-31-2011, 09:13 AM
Active Record "insert" is not working properly - by El Forum - 08-01-2011, 08:55 PM
Active Record "insert" is not working properly - by El Forum - 08-01-2011, 08:58 PM
Active Record "insert" is not working properly - by El Forum - 08-01-2011, 09:37 PM
Active Record "insert" is not working properly - by El Forum - 08-02-2011, 12:20 PM
Active Record "insert" is not working properly - by El Forum - 08-02-2011, 05:12 PM
Active Record "insert" is not working properly - by El Forum - 08-03-2011, 01:07 AM
Active Record "insert" is not working properly - by El Forum - 08-03-2011, 01:36 AM
Active Record "insert" is not working properly - by El Forum - 08-03-2011, 02:29 AM
Active Record "insert" is not working properly - by El Forum - 08-03-2011, 04:04 AM
Active Record "insert" is not working properly - by El Forum - 08-03-2011, 05:49 AM
Active Record "insert" is not working properly - by El Forum - 08-03-2011, 02:26 PM
Active Record "insert" is not working properly - by El Forum - 08-03-2011, 02:41 PM
Active Record "insert" is not working properly - by El Forum - 08-03-2011, 02:46 PM
Active Record "insert" is not working properly - by El Forum - 08-05-2011, 01:14 PM
Active Record "insert" is not working properly - by El Forum - 08-05-2011, 02:16 PM
Active Record "insert" is not working properly - by El Forum - 08-05-2011, 03:00 PM
Active Record "insert" is not working properly - by El Forum - 08-05-2011, 03:26 PM
Active Record "insert" is not working properly - by El Forum - 08-06-2011, 11:15 AM
Active Record "insert" is not working properly - by El Forum - 08-06-2011, 01:38 PM
Active Record "insert" is not working properly - by El Forum - 08-06-2011, 01:45 PM
Active Record "insert" is not working properly - by El Forum - 08-06-2011, 01:58 PM
Active Record "insert" is not working properly - by El Forum - 08-06-2011, 09:49 PM



Theme © iAndrew 2016 - Forum software by © MyBB