Magento 1.x Date field is not getting updated when we use setData method with multiple setData
We are using Magento 1.9 for our application. Here is my sample code $customer_collection= Mage::getModel("customer/customer")->load($data['customer_id']); foreach ($data['data'] as $key => $customer) { $customer_collection->setData($customer['attribute_name'] , $customer['attribute_value']); } $customer_collection->save(); //finally saving the data Above code is working for all the fields except…