According to ‘Yahoo Answers‘ there are 23 Facebook emoticons and smileys. You use keyboard shortcuts to make them by typing a specific combination of characters. For example to make a most popular smile emoticon you type :). Some of the…
5 Latest Android Phones under RS 20000
Mobile smartphone market has a wide range of smartphones these days. Because of their low budget, charming graphical interface, size, weight, durability and expandable features Android smartphones are leading the market. By their continuous efforts and frequent releases of new…
What is Bitcoin and how does it work?
What is Bitcoin? Bitcoin is a decentralized peer-to-peer digital currency and payment network. It is completely based on the belief that Bitcoin has value. Hoss Gifford of OneMethod Inc. explains that “Unlike traditional currencies, it’s not tied to any one…
How to implement breadcrumbs in WordPress website?
Breadcrumbs in WordPress website In order to enhance user experience and site usability using breadcrumbs is an important factor. For SEO perspective it may contribute and benefit in a good way if used on website pages. Assume that a user…
How to import Gmail contacts to Microsoft Outlook
Following simple steps one can import Gmail contacts to Microsoft Outlook. Here’s the steps. 1. After logging into Gmail account go to (dashboard) Gmail > Contacts as shown in the image below.
Loading all WordPress posts having or not having a custom meta field
In a scenario one would like to create a custom meta key value pair for a post and save some value into it. Assume of an existing blog with hundred of posts which you want to add a custom field.…
Controlling rel canonical tag in WordPress
I used a forum plugin in wordpress. This plugin provides a shortcode which is placed on a page. Once place this single page is used to shows forum home page, forum category pages and topics pages as well. For the…
What is involved in SEO for a website?
Steps involved in SEO This is a widely asked question. What are the steps involved in SEO for a website. What a website owner has to do or should get done while doing SEO or Search Engine Optimization of his/her…
How to increase the number of Courier-IMAP connections on Centos, Linux
This article applies to you if you are seeing this message when accessing your email: ERROR: Unable to connect to your IMAP server. You may have exceeded the maximum number of connections to this server.
PHP – Fix apostrophe(‘) converting to entity ' in csv export
1) If you read a .csv file for download: use \xEF\xBB\xBF after headers and just before you echo file data. For example: echo “\xEF\xBB\xBF”; // UTF-8 BOM readfile($file); 2) If you echo per line use htmlspecialchars_decode to covert single and…