View Single Post
  #3 (permalink)  
Old 07-03-2008, 08:08 AM
ahmedrezk ahmedrezk is offline
Junior Member
 
Join Date: Jan 2008
Posts: 8
Question

What ensure that this is an zend_db error, that when I tries to pass array of values as following it works:

Case 1: Not work and exception appear

$data = array('lastresettime' => time(),
'verifiedflag' => '0',
'resetcount' => 'resetcount + 1');

Case 2: It works and no problem
$data = array('lastresettime' => time(),
'verifiedflag' => '0');

Got it??
Reply With Quote