Part of the EllisLab Network
   
 
Query Binding doesnt work
Posted: 27 July 2009 01:01 PM   [ Ignore ]  
Grad Student
Rank
Total Posts:  41
Joined  07-25-2009

Hi Guys

Everytime I try to do query binding the queries are never executed, be it insert,update or select. Does anyone know how I can fix this ?

$sql_update_login "UPDATE admin_users SET ip_address=?, last_login=NOW() WHERE id=?";
$this->db->query($sql_update_login, array(2$ip$id)); 
Profile
 
 
Posted: 27 July 2009 01:13 PM   [ Ignore ]   [ # 1 ]  
Lab Assistant
RankRank
Total Posts:  250
Joined  11-08-2006

You’re trying to bind to 2 params but passing 3 variables in, drop the 2 from your array.

Profile