How To Get Values Of Multiple Select In PHP

As we all know Multiple Select in HTML is a Select box where we can choose multiple values. While define multiple select by adding multiple=”multiple” like the example below – One Two Three But when we will submit data, even after choosing multiple values, $_POST will show only one entry. To get all the values… Continue reading How To Get Values Of Multiple Select In PHP

How to display Indian Rupee Symbol in Website with HTML / CSS / JS

We know how to display the € (€) or £ (£) symbols easily with HTML. Lets now see how easily can we display the new Indian Rupee Symbol using HTML. Easiest if your machine supports Unicode 6.0 If your machine supports Unicode 6.0 its as easy as ₹ (₹) If you want to make sure… Continue reading How to display Indian Rupee Symbol in Website with HTML / CSS / JS

How To Create Pages In WordPress With Custom Coding

Objective Create a page in WordPress which will show the header, footer, sidebars like the rest of the site, but will allow custom coding in the main body section. So how to create this WordPress page which will allow custom coding ? 1. Go to the theme folder in wp-content\themes\{your_theme_folder} 2. Create a page with… Continue reading How To Create Pages In WordPress With Custom Coding

How To Download Magento Extensions Manually Without Magento Connect

We all know that the Magento extensions can be downloaded from Magento Connect and they have a huge collection of extensions. But the problem with this system is that the user have no control over what files are downloaded and where. Sure Magento itself is a great product. But they don’t check each and every… Continue reading How To Download Magento Extensions Manually Without Magento Connect

Zen Cart Slide Out Vertical Category Sub Category Menu Sidebox Plugin Download

Download Please download the plugin from here, hosted in the official Zen-Cart site. Plugin Description This Zen-Cart plugin creates a new side-box which shows all the active categories as well as the sub categories. At any time all the active sub categories are also loaded recursively and not only when a parent category is visited… Continue reading Zen Cart Slide Out Vertical Category Sub Category Menu Sidebox Plugin Download

How to get recent comments in WordPress explained with all the parameters

Get all the values for all the comments Suppose you want to show the recent comments for a WordPress blog. There is a ready made WordPress function for that. It is – get_comments() This function will return all the comments posted till date as an array of objects. Each object contains the following fields- [comment_ID]… Continue reading How to get recent comments in WordPress explained with all the parameters