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

[eluser]waynhall[/eluser]
Although this shouldn't be necessary in a well-written program, this workaround may solve your issue for now:

Code:
<?php
class Members extends CI_Model {
    
    public function register($username, $password, $email){
        
        if($username && $password && $email) {  // check if they exist and aren't 0 or FALSE
            // you could also try:
            // if(!empty($username) && !empty($password) && !empty($email)){}
            
            $sqlq = "INSERT INTO members VALUES(?, ?, ?, ?)";
            $this->db->query($sqlq, array(NULL, $username, $password, $email));  
        }
          
    }
}


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