Categories
MySQL

SQl MATCH AGAINST find results with only more than 3 characters in the result

In MySQL, while searching column using MATCH AGAINST keywords then the result matches all the row with search character more than 3. If you see the system variable ft_min_word_len, which specifies the minimum length of words to be indexed by full-text searching, it defaults to 4, so 3-letter words won’t be found by full-text searching. […]

Categories
jQuery

jQuery Tiny Carousel

Based on javascript jQuery library, Tiny Carousel is a lightweight carousel to slide html based content. It gives web designers a powerful way by utilizing the dynamic lightweight to enhance user interface. Features of Tiny Carousel: Slide vertical or horizontal. Support for AMD, Node, requirejs and commonjs. Supports navigation by button or paging. Very Lightweight. […]

Categories
jQuery

xBreadcrumbs (Extended Breadcrumbs) jQuery Plugins

xBreadcrumbs (Extended Breadcrumbs) is a jQuery plug-in to categorize breadcrumbs for your site. For a deep structured website you can navigate from one section to another using xBreadcrumbs. This is optimized for search engines. xBreadcrumbs Features: 1) Very light-weight script (~3Kb) 2) Easy to integrate on website 3) Fully customizable via CSS 4) Works with […]

Categories
SEO

DoFollow & Nofollow Link

In search engine optimization the noindex, robots, dofollow & nofollow are the common words to increase your page traffic and very important also. Basically, search engines like Google, Bing and any others have their own algorithms to scan the webpages across the websites on internet and such crawled web pages are stored in the data […]

Categories
Technology

Web Servers

For World Wide Web or WWW, web servers is an essential part because without web servers there is web. For developing any website you must use a web server. Basically, web server is a piece of software that you can install on your computer. Some high powered computers are used as web servers as they […]

Categories
WordPress

Show related posts in WordPress without any plugin

You can show related posts in WordPress without any plugin and this will reduce your loading fast. Using a simple code you can get related posts in WordPress. Simply write the below code and put this code anywhere you want to show on your website. Example of related posts: <?php $tags = wp_get_post_tags($post->ID); if ($tags) […]

Categories
Google Adsense WordPress

Adsense Between WordPress Post

When you create a website the first thing will come to your mind is Adsense. And the best way to show it between the post. Using WordPress plugin you can randomly add Adsense Between WordPress post. Generally, placing Adsense randomly in between a post is a good way to experiment a multiple ads formats & […]

Categories
Php WordPress

Associate image with your WordPress profile

Using Gravatar you can make an Image as a WordPress profile picture that are associate with a email address registered with. When browsing multiple web sites, you may notice that so many users have a picture next to their name i.e. called “avatars” and WordPress has this type of avatars i.e. called “Globally Recognized Avatar” […]

Categories
Creative blog Php WordPress

Execute PHP code in WordPress Sidebar

Want to add PHP code in your WordPress widget? Here are two WordPress plugin by which you can add PHP code in sidebar widget. Developer can easily do this functionality without any widget but for a non-programmer this may be quite difficult task. Sometimes it is necessary to run a PHP code in the sidebar […]

Categories
AngularJS

AngularJS custom directives

To extend the functionality of HTML in AngularJS, custom directives are used using “directive” function. This simply replaces the element for which this is activated. Using its compile() method AngularJS application finds the matching elements and process for one time activity. For the following types of elements AngularJS provides support to create custom directives. – […]