If you want to display related product on product details page in Magento. It’s very easy to show related product by using few easy steps. First we will have to add products to a particular product as related product.
magento tutorials
Magento – Models, resource models, and collections
Here we will explain to work with database collection in Magento. As we know that Magento is enrich with MVC (Model – View – Controller). So we will basically starts with some main concepts of models, resource models, and collections.
Know About Magento Object Relational Mapping (ORM)
The implementation of a “Tier Models” is an important part of an MVC framework. It represents the details of your application and handles data in applications. Magento Models play an even greater role, because they usually contain the “Business Logic”.
Generate CSV file in Magento
Magento provides a functionality to directly export the content from the grids in admin section like Sales, Products etc in the form of CSV or XML. But sometimes you need to generate a CSV with the custom data. Magento has already a nice class for it, it can be found at lib/Varien/File file name Csv.php. This class […]