To check out whether record exists in the database of MAGENTO you can use the following query:::
1 2 3 4 5 6 7 8 9 |
<!--?php $collection = Mage::getModel('sample/sample')--->getCollection()->addFieldToFilter('field_name', $value_to_check)->getFirstItem(); if($collection->getId()){ // if record found in database }else{ if record not found in database } ?> |
Above if else condition checks if the record exists in database or not.
That’s it!
Read the guidelines for Technology + Write For Us + Guest Post Category and send blog at developergang1@gmail.com