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 Download A Copy Of Your Facebook Data
Yes! You can download a copy of your facebook data! Click Account Settings Under Language find the link Download a copy of your Facebook data. Click it. On the next page click the Start My Archive green button. Once the button is clicked you need to wait for sometime (can be a few hours too… Continue reading How To Download A Copy Of Your Facebook Data
How To Set Favicon For Your Website
Favicon or favorites icon are the small icons that are shown in front of the URL in the tabs of your browser and also in your bookmarks. Lets see how we can set up a custom favicon for your website. Create the Icon To create icons you need an icon maker. We will go a… Continue reading How To Set Favicon For Your Website
Enhance Your Gmail Experince With Labs
We all love Gmail for its numerous great features. But there are lots more hidden which we can activate to further enhance our experience. Labs is the place to find those gems. Lets first check where to find Labs. 1. Click the “Settings” button after logging in to your Gmail account. 2. Under “Settings” click… Continue reading Enhance Your Gmail Experince With Labs
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 Get The Selected Theme Path In Zen Cart
To get the currently set theme’s path in Zen Cart use the following code – echo DIR_WS_TEMPLATE; This will return value – includes/templates/{your_theme_path}/
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