31 Oct 2013

Magento: How To Select, Insert, Update, And Delete Data?

Suppose, I have a database table named ‘test‘ with the following fields:-
id : int, auto increment, primary key
title : varchar
content : text
status : 1
Suppose, I have a module named ‘mytest‘. Here follows the code to select, insert, update, and delete data from the ‘test‘ table.

30 Oct 2013

Here Are Code To Get, Set, And Unset Session In Magento

Magento allows the functionality to set the the value into session and get it where you want and unset too.There are three different modules magento uses for handling the session variable.Most common is the core module for handling the session variable that is'core/session' .For using the session variable magento uses most favourable methods 'setter' and getter like to set session set(your variable name) and to retrieving the session get.So lets starts for more details how to use variable for set,get and unset session variables.