Home » Archive

Articles tagged with: session

Magento »

[23 Nov 2009 | 8 Comments | 5,659 views]

Set a custom session with Variable Name ‘testing_magento’. The session value here is ‘hello’. Mage::getSingleton(‘core/session’)->setTestingMagento(‘hello’); Get session testing_magento $test = Mage::getSingleton(‘core/session’)->getTestingMagento();

MySQL, PHP »

[5 Mar 2008 | 11 Comments | 7,078 views]

Before I had posted an article to add, edit, delete, and display contents. I had also included sessions there. There was the facility to login and register users too. But i got feedback that it was a bit complex for novice users of PHP (users who have just started PHPing). It was a kind of [...]

MySQL, PHP »

[15 May 2007 | One Comment | 615 views]

At first create database named ‘test’ in mysql. Use ‘test’. Then create table ‘project’. MySQL queries for the above tasks :: Now the php code::