Welcome Guest, Not a member yet? Register   Sign In
Weird problem trying to create/update a table with Model function
#19

[eluser]InsiteFX[/eluser]
I may be wrong here!
Code:
/*Turn temp_email to 0*/
'temp_email' => 0,

/*Turn confirm_password to 0*/
'confirm_password' => 0,

/*Turn temp_password to 0*/
'temp_password' => 0

You are using a varchar field, error might be caused by asigning an int vale try this.
Code:
/*Turn temp_email to 0*/
'temp_email' => '0',

/*Turn confirm_password to 0*/
'confirm_password' => '0',

/*Turn temp_password to 0*/
'temp_password' => '0'
I mean you have those fields set as NOT NULL but you are passing NULL values to them...

InsiteFX


Messages In This Thread
Weird problem trying to create/update a table with Model function - by El Forum - 04-14-2011, 11:46 PM



Theme © iAndrew 2016 - Forum software by © MyBB