Magento: Create Customer and Order Programmatically

This article show how you can create sales order programmatically through code in Magento 1.x. This code example also includes creating n...

Read more
Magento: How to select, insert, update, and delete data using model?

Magento: How to select, insert, update, and delete data using model?

Here, I will be showing how to select, insert/add, update/edit and delete data in the Magento way. It’s about implementing the CRUD (Cre...

Read more
MySQL - LEFT JOIN and RIGHT JOIN, INNER JOIN and OUTER JOIN

MySQL - LEFT JOIN and RIGHT JOIN, INNER JOIN and OUTER JOIN

What are JOINS? Joins help retrieving data from two or more database tables. The tables are mutually related using primary and foreign...

Read more
Direct SQL Queries In Magento

Direct SQL Queries In Magento

Magento's use of data models provide a great way to access and modify data. Database Connections In Magento Magento will auto...

Read more
Magento observer

Magento observer

When it comes to customize the magento code, there are following 4 options: 1. Creating a observer should be the first to consider....

Read more