Categories
Creative blog

Decrease Blog’s Bounce Rate

Know the knowledge about bounce rate in Google analytics. Here is the tips for reducing the bounce rate and increasing traffic views. The bounce rate of a website means an analytic factor that is used to determine what actions people are taking after reading your one post. Either they move to another page or they […]

Categories
Creative blog

Get free traffic to your blog

Get free traffic to your blog by using numerous methods which you can use right now for your running blog. For your new blog, you need readers always to grow your blog time by time. There are so many ways to get free traffic and paid traffic to your blog. Here we are describing some […]

Categories
Creative blog

Disadvantages of Paid Traffic

Traffic on a website is a key to run any online business and in paid traffic there are advantages and disadvantages also. So, targeted paid traffic can only worth your money. As paid traffic gather audience to a website, so this way, their business is viewed by many users and here in this process business […]

Categories
MySQL

Update from one table to another with condition in MySQL

In MySQL, you can update fields of one table from another table with a conditional statement also. For example, you have two tables i.e. “user_activity” and “user”. And you need to update a column in one table to the value of another column where an user_id matches in both tables. So, in a single query […]

Categories
SEO

5 quick tips to speed up your website load time

Website speed up is one of the ranking method from Google and here we will discuss few tips how to speed up your blog and decrease loading time of your blog. There are so many factors by which we can reduce the page loading time and we need to care about all those steps to […]

Categories
Creative blog

Dofollow or Nofollow – What’s suitable for blog comments?

What’s suitable for blog comments? Dofollow or Nofollow? Here we shows negative implication of keeping your comments dofollow or nofollow. Search engines use web links to go through all the sites all over the world. This bots crawl each and every site and looks for more links within that website. So, bots only crawl that […]

Categories
Html

Why does HTML think “chucknorris” is a color?

Why does HTML think “chucknorris” is a color? Any unknown digit in a HTML color code are treated as  zero so using invalid characters in a color code shows different value. Missing or incorrect digits are treated as 0 in HTML color code. For example the values #F0F0F0, F0F0F0, F0F0F, #FnFnFn and FnFnFn are all […]

Categories
Creative blog SEO

5 Image Optimizer Website For Your Blog

Images can make a lots of traffic to your blog. To make webpage faster you need to optimize image. In this article we will talk about how you can optimize and resize images and that will help your website load more faster. Let’s see some optimize image tools : 1) IMAGE OPTIMIZER Using Image Optimizer, […]

Categories
Php

PHP Force Download

A force download script in PHP can give you more control over a file download rather than providing a direct link. Using a force-download script, you can: Validate whether a user is logged in Track total number of download <?php function force_download( $file, $new_name=”filename.doc” ) { $dir = “”; if ((isset($file))&&(file_exists($dir.$file))) { header(‘Content-type: application/force-download’); header(‘Content-Disposition: […]

Categories
jQuery

Difference between .closest() and .parents()

Using jQuery closest and parents, you can set or get the first or all ancestor element that matches the selector and traversing up through its ancestors in the DOM tree. The ancestor may be a parent, grandparent, great grandparent, and so on. For example: $(“div”).closest(“p”).css({“color”: “red”}); If it doesn’t match the selector, then it will […]